not really known
Go to file
2023-05-21 17:14:49 +03:00
compose Initial commit 2023-05-18 20:25:22 +03:00
config add personal recommendations 2023-05-21 17:13:16 +03:00
data removed excursions 2023-05-21 14:12:45 +03:00
locale Initial commit 2023-05-18 20:25:22 +03:00
logs added logs 2023-05-19 20:16:21 +03:00
parsers added hotels, restaurants 2023-05-21 10:08:30 +03:00
passfinder Merge pull request #2 from Alexander-D-Karpov/personal-recommendation 2023-05-21 17:14:49 +03:00
.dockerignore Initial commit 2023-05-18 20:25:22 +03:00
.editorconfig Initial commit 2023-05-18 20:25:22 +03:00
.env.template Initial commit 2023-05-18 20:25:22 +03:00
.gitattributes Initial commit 2023-05-18 20:25:22 +03:00
.gitignore init 2023-05-21 13:37:21 +03:00
.pre-commit-config.yaml Initial commit 2023-05-18 20:25:22 +03:00
.pylintrc Initial commit 2023-05-18 20:25:22 +03:00
data.json added hotels, restaurants 2023-05-21 10:08:30 +03:00
local.yml Initial commit 2023-05-18 20:25:22 +03:00
manage.py Initial commit 2023-05-18 20:25:22 +03:00
poetry.lock updated requirements 2023-05-21 13:46:45 +03:00
production.yml Initial commit 2023-05-18 20:25:22 +03:00
pyproject.toml updated requirements 2023-05-21 13:46:45 +03:00
pytest.ini Initial commit 2023-05-18 20:25:22 +03:00
README.md Initial commit 2023-05-18 20:25:22 +03:00
requirements.txt updated requirements 2023-05-21 13:46:45 +03:00
setup.cfg Initial commit 2023-05-18 20:25:22 +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