Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 542 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 542 Bytes

GC Backend

Gamecraft Backend

Installation

Use the package manager pip to install the project.

pip install -r requirements

then you need rabbitmq and celery running in the background:

sudo systemctl start rabbitmq-server
celery -A GD worker  -l info

finally, start the server:

python manage.py runserver

for gunicorn deploy:

gunicorn --env DJANGO_SETTINGS_MODULE=GD.production. GD.wsgi:application

or simply try this:

docker-compose up