Gamecraft Backend
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