- Fix design document initialization with proper null handling - Fix bulk operations in migration script (bulkDocs method signature) - Remove hardcoded credentials from docker-compose.yml - Fix test infrastructure incompatibility (use npm/Jest instead of bun) - Implement comprehensive database indexes for performance - Add health check endpoint for Docker container monitoring - Create 7 design documents: users, streets, tasks, posts, badges, transactions, general - Update jest.setup.js with proper mock exports - Add .env.example with secure defaults 🤖 Generated with [AI Assistant] Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
22 lines
652 B
Plaintext
22 lines
652 B
Plaintext
# CouchDB Configuration
|
|
COUCHDB_USER=admin
|
|
COUCHDB_PASSWORD=change-this-password
|
|
COUCHDB_SECRET=change-this-secret-string
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=change-this-jwt-secret-key
|
|
|
|
# Application Configuration
|
|
NODE_ENV=development
|
|
PORT=5000
|
|
COUCHDB_URL=http://localhost:5984
|
|
COUCHDB_DB_NAME=adopt-a-street
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# External Services (Optional)
|
|
# CLOUDINARY_CLOUD_NAME=your-cloudinary-cloud-name
|
|
# CLOUDINARY_API_KEY=your-cloudinary-api-key
|
|
# CLOUDINARY_API_SECRET=your-cloudinary-api-secret
|
|
# STRIPE_SECRET_KEY=your-stripe-secret-key
|
|
# STRIPE_PUBLISHABLE_KEY=your-stripe-publishable-key
|
|
# OPENAI_API_KEY=your-openai-api-key |