# code-chat-ai **Repository Path**: xuzhaooo/code-chat-ai ## Basic Information - **Project Name**: code-chat-ai - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-03-03 - **Last Updated**: 2025-08-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README ## env ```bash # 去node官网下载v22 node 22 # 会自带一个npm npm 10 # 下载pnpm npm i -g pnpm; ``` ## init ```bash pnpm i ``` ## local init 只需要执行一次 ```bash # 初始化postgres docker run --name postgres-dev -e POSTGRES_USER=example-misskey-user -e POSTGRES_PASSWORD=example-misskey-pass -p 5432:5432 -d postgres:15-alpine # 初始化数据库表 npm run migrate ``` ## dev ```bash npm run dev ``` ## build ```bash npm run build ``` ## start ```bash npm run start ```