23 lines
647 B
Plaintext
23 lines
647 B
Plaintext
# Docker Compose Environment Configuration (Example)
|
|
# Copy this file to .env and update values as needed
|
|
|
|
# MongoDB Configuration
|
|
MONGODB_URI=mongodb://admin:password@mongodb:27017/noteapp?authSource=admin
|
|
|
|
# Backend Configuration
|
|
BACKEND_PORT=8080
|
|
JWT_SECRET=your-super-secret-jwt-key-minimum-32-characters-change-in-production
|
|
ENCRYPTION_KEY=A5CC60AB92FCA026F5477DC486555882
|
|
FRONTEND_URL="http://localhost"
|
|
|
|
VITE_API_BASE_URL="http://localhost"
|
|
|
|
# Default Admin
|
|
DEFAULT_ADMIN_EMAIL=admin@notely.local
|
|
DEFAULT_ADMIN_USERNAME=admin
|
|
DEFAULT_ADMIN_PASSWORD=ChangeThisAdminPassword123!
|
|
|
|
# Nginx Configuration
|
|
NGINX_HTTP_PORT=80
|
|
NGINX_HTTPS_PORT=443
|