add docker

This commit is contained in:
Bryan Gerlach
2025-01-23 16:44:17 -06:00
parent 7c7217e1d4
commit d293698e00
7 changed files with 66 additions and 81 deletions

9
gunicorn.conf.py Normal file
View File

@@ -0,0 +1,9 @@
import os
# Adjust these values as needed
bind = "0.0.0.0:8000" # Host and port for Gunicorn to listen on
workers = 3 # The number of worker processes for concurrency (adjust based on system resources)
activate_base = True # Activate your virtual environment if applicable
# Path to your Django project's main WSGI application file (usually manage.py)
wsgi_app = "rdgen.wsgi.application"