mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 20:37:24 +00:00
Removes the `Chat Prompt.txt`, `VSCode Agent/Prompt.txt`, `Warp.dev/Prompt.txt`, and `v0 Prompts and Tools/Prompt.txt` files. These files likely contain outdated prompts or configurations that are no longer needed in the current project. Removing them helps to clean up the codebase and prevent potential confusion or conflicts.
38 lines
807 B
Plaintext
38 lines
807 B
Plaintext
# Nowhere AI Agent Backend Configuration
|
|
|
|
# Server Configuration
|
|
NODE_ENV=development
|
|
PORT=3001
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# AI Model API Keys
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
|
|
# Database Configuration
|
|
REDIS_URL=redis://localhost:6379
|
|
POSTGRES_URL=postgresql://username:password@localhost:5432/nowhere_db
|
|
|
|
# Authentication (Optional for development)
|
|
JWT_SECRET=your_jwt_secret_here
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_POINTS=100
|
|
RATE_LIMIT_DURATION=60
|
|
VOICE_RATE_LIMIT_POINTS=50
|
|
|
|
# Voice Processing (Optional)
|
|
AZURE_SPEECH_KEY=your_azure_speech_key_here
|
|
AZURE_SPEECH_REGION=your_azure_region_here
|
|
|
|
# Security
|
|
CORS_ORIGIN=http://localhost:3000
|
|
HELMET_ENABLED=true
|
|
|
|
# Development
|
|
DEBUG=true
|
|
ENABLE_SWAGGER=true |