not really known
Go to file
2023-05-27 18:50:14 +03:00
compose add files 2023-05-27 11:13:41 +03:00
config added periodic tasks 2023-05-27 18:50:14 +03:00
locale add files 2023-05-27 11:13:41 +03:00
logs added logs 2023-05-19 20:16:21 +03:00
parsers add files 2023-05-27 11:13:41 +03:00
passfinder added periodic tasks 2023-05-27 18:50:14 +03:00
.dockerignore add files 2023-05-27 11:13:41 +03:00
.editorconfig add files 2023-05-27 11:13:41 +03:00
.env.template added periodic tasks 2023-05-27 18:50:14 +03:00
.gitattributes add files 2023-05-27 11:13:41 +03:00
.gitignore add files 2023-05-27 11:13:41 +03:00
.pre-commit-config.yaml add files 2023-05-27 11:13:41 +03:00
.pylintrc add files 2023-05-27 11:13:41 +03:00
data4.json add files 2023-05-27 11:13:41 +03:00
local.yml add files 2023-05-27 11:13:41 +03:00
manage.py added periodic tasks 2023-05-27 18:50:14 +03:00
poetry.lock added periodic tasks 2023-05-27 18:50:14 +03:00
production.yml add files 2023-05-27 11:13:41 +03:00
pyproject.toml added periodic tasks 2023-05-27 18:50:14 +03:00
pytest.ini add files 2023-05-27 11:13:41 +03:00
README.md add files 2023-05-27 11:13:41 +03:00
requirements.txt add files 2023-05-27 11:13:41 +03:00
setup.cfg add files 2023-05-27 11:13:41 +03:00

Pass Finder

Basic Commands

Runserver

$ ./manage.py runserver_plus

Type checks

Running type checks with mypy:

$ mypy passfinder

Running tests with pytest

$ pytest

Setting Up Your Users

  • To create a superuser account, use this command:

    $ python manage.py createsuperuser
    

Celery

This app comes with Celery.

To run a celery worker:

cd passfinder
celery -A config.celery_app 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.

made with cookiecutter-django