Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 607 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 607 Bytes

amongus-backend

To run this application:

docker-compose up -d

Create and activate your virtualenv Go to the root of the project (where manage.py is present)

pip install -r requirements.txt
python manage.py migrate
python manage.py runserver 8000

# run this in prod: gunicorn amongus.wsgi -b 0.0.0.0:8000 --workers 2 --threads 3 --limit-request-line 4094 --limit-request-fields 100 --timeout 300 --log-level debug
celery -A amongus worker --loglevel=INFO -P solo -c 10

Get the .env file from Bhavesh and place it in the same directory as the manage.py file