Mirrors deploy-test-server.sh:233-242 + :329-333. Single pip command installs both editable packages (l4d2host + l4d2web) from the same checkout. Alembic and seed-overlays run as the left4me user with JOB_WORKER_ENABLED=false sourced from web.env.
22 lines
522 B
Python
22 lines
522 B
Python
defaults = {
|
|
'left4me': {
|
|
'gunicorn_workers': 1,
|
|
'gunicorn_threads': 32,
|
|
'job_worker_threads': 4,
|
|
'port_range_start': 27015,
|
|
'port_range_end': 27115,
|
|
},
|
|
'apt': {
|
|
'packages': {
|
|
'p7zip-full': {},
|
|
'nftables': {},
|
|
'iproute2': {},
|
|
'curl': {},
|
|
'ca-certificates': {},
|
|
'python3': {},
|
|
'python3-venv': {},
|
|
'python3-pip': {},
|
|
'python3-dev': {},
|
|
},
|
|
},
|
|
}
|