- Create Dockerfile for backend with Python 3.12 and gunicorn - Add docker-compose.yml with PostgreSQL, backend, nginx, certbot - Configure nginx reverse proxy with SSL and rate limiting - Add deployment scripts: deploy.sh, backup-db.sh, setup-ssl.sh - Include environment template and deployment documentation
13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
# Database Configuration
|
|
DB_USER=agenda
|
|
DB_PASSWORD=your-secure-database-password-here
|
|
DB_NAME=agenda_tasks
|
|
|
|
# Application Configuration
|
|
SECRET_KEY=your-secret-key-min-32-characters-here
|
|
DEBUG=false
|
|
|
|
# Domain Configuration (for SSL)
|
|
DOMAIN=your-domain.com
|
|
EMAIL=admin@your-domain.com
|