system-prompts-and-models-o.../.github/Advanced_AI_Agent/examples/implementation/backend/env.example
dopeuni444 d43632a49a Removes outdated prompt files
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.
2025-07-31 01:45:01 +04:00

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