Gamecraft Backend
Use the package manager pip to install the project.
pip install -r requirementsthen you need rabbitmq and celery running in the background:
sudo systemctl start rabbitmq-server
celery -A GD worker -l infofinally, start the server:
python manage.py runserverfor gunicorn deploy:
gunicorn --env DJANGO_SETTINGS_MODULE=GD.production. GD.wsgi:applicationor simply try this:
docker-compose up