-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.config
More file actions
30 lines (24 loc) · 744 Bytes
/
Copy pathdeploy.config
File metadata and controls
30 lines (24 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Deployment Configuration File
# Edit this file before running deploy.sh
# Application settings
APP_NAME="cardlabsv3.0"
APP_DIR="/home/ubuntu/cardlabsv3.0"
PYTHON_VERSION="python3.12"
# Domain settings
DOMAIN="cardlabs-sandbox.duckdns.org"
WWW_DOMAIN="www.cardlabs-sandbox.duckdns.org"
# Database settings
DB_NAME="cardlabs"
DB_USER="postgres"
DB_PASSWORD="1988" # CHANGE THIS IN PRODUCTION!
# Let's Encrypt settings
ADMIN_EMAIL="your-email@example.com" # CHANGE THIS!
# Gunicorn settings
WORKERS=4
WORKER_CLASS="uvicorn.workers.UvicornWorker"
BIND_ADDRESS="127.0.0.1:8000"
# Additional environment variables for .env file
# Add as KEY=VALUE pairs, one per line
# Example:
# SECRET_KEY=your-secret-key-here
# API_KEY=your-api-key-here