931a64dbc8
- deploy.sh: one-click deployment (squid + venv + pip + gunicorn + systemd) - gunicorn_config.py: unified gunicorn config with env var overrides - .env.example: env var template for SECRET_KEY, port, workers, security - wsgi.py: create all runtime dirs (uploads, ssl_certs); optional dotenv loading - requirements.txt: add python-dotenv + cryptography - .gitignore: cover runtime dirs, .env, pyc files
12 lines
96 B
Plaintext
12 lines
96 B
Plaintext
# runtime data
|
|
instance/
|
|
backups/
|
|
uploads/
|
|
ssl_certs/
|
|
*.pyc
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.env
|
|
*.log
|