Working Association
Moved to settings.
To create an superuser account, use this command:
$ python manage.py createsuperuser
Running type checks with mypy:
$ mypy techsalerno
To run the tests, check your test coverage, and generate an HTML coverage report:
$ coverage run -m pytest $ coverage html $ open htmlcov/index.html
$ pytest
This app comes with Celery.
To run a celery worker:
cd techsalerno
celery -A config.celery worker -l info
Please note: For Celery's import magic to work, it is important where the celery commands are run. If you are in the same folder with manage.py, you should be right.
The following details how to deploy this application.