Example grocery app in Django 3
python3 -m venv grocery
source grocery/bin/activate
python manage.py makemigrations --dry-run --verbosity 3 # test new modelspython manage.py makemigrations
python manage.py migrate
celery -A config worker -l info
flower -A config --port=5555 --broker=redis://localhost:6379/0python3 -m pytestPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.