A chat application with highlighting and discussion features.
- Create a Git repository and push your code:
git init
git add .
git commit -m "Initial commit"
git remote add origin <your-repo-url>
git push -u origin main
-
On Render.com:
- Sign up/Login to Render
- Click "New +" and select "Web Service"
- Connect your GitHub repository
- Fill in the following settings:
- Name: deeperseek (or your preferred name)
- Environment: Node
- Build Command:
npm install && npm run build
- Start Command:
npm start
- Instance Type: Free
-
Add Environment Variables:
- DEEPSEEK_API_KEY: Your DeepSeek API key
- DATABASE_URL: /opt/render/project/src/chat.db
- NODE_ENV: production
-
Click "Create Web Service"
- Install dependencies:
npm install
cd frontend && npm install
- Create a .env file with:
DEEPSEEK_API_KEY=your_api_key_here
- Run the development server:
npm run dev