not really known
Go to file
dependabot[bot] dc502f66ce
Bump django-cors-headers from 3.14.0 to 4.3.1
Bumps [django-cors-headers](https://github.com/adamchainz/django-cors-headers) from 3.14.0 to 4.3.1.
- [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/adamchainz/django-cors-headers/compare/3.14.0...4.3.1)

---
updated-dependencies:
- dependency-name: django-cors-headers
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-15 02:34:20 +00:00
.envs linter fix 2023-09-08 16:52:18 +03:00
.github linter fix 2023-09-08 16:52:18 +03:00
compose Initial commit 2023-09-08 16:47:40 +03:00
config updated score calc 2023-09-09 10:07:17 +03:00
locale Initial commit 2023-09-08 16:47:40 +03:00
logs added text process, ml process 2023-09-08 19:06:21 +03:00
press_release_nl updated doc process 2023-09-09 19:59:39 +03:00
utility Initial commit 2023-09-08 16:47:40 +03:00
.dockerignore Initial commit 2023-09-08 16:47:40 +03:00
.editorconfig Initial commit 2023-09-08 16:47:40 +03:00
.env.template Initial commit 2023-09-08 16:47:40 +03:00
.gitattributes Initial commit 2023-09-08 16:47:40 +03:00
.gitignore linter fix 2023-09-08 16:52:18 +03:00
.pre-commit-config.yaml Initial commit 2023-09-08 16:47:40 +03:00
.pylintrc Initial commit 2023-09-08 16:47:40 +03:00
local.yml Initial commit 2023-09-08 16:47:40 +03:00
manage.py Initial commit 2023-09-08 16:47:40 +03:00
poetry.lock Bump django-cors-headers from 3.14.0 to 4.3.1 2023-11-15 02:34:20 +00:00
production.yml Initial commit 2023-09-08 16:47:40 +03:00
pyproject.toml Bump django-cors-headers from 3.14.0 to 4.3.1 2023-11-15 02:34:20 +00:00
pytest.ini Initial commit 2023-09-08 16:47:40 +03:00
README.md updated readme 2023-09-10 06:09:11 +03:00
setup.cfg Initial commit 2023-09-08 16:47:40 +03:00

Press Release Analyzer

Бекенд для приложения: создание данных, обработка, процессинг и генерация файлов

Код написан с использованием лучших подходов на Django, с использованием Celery. Так же есть CI/CD, тесты, Docker

Basic Commands

Runserver

$ ./manage.py migrate
$ ./manage.py runserver_plus

Type checks

Running type checks with mypy:

$ mypy press_release_nl

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 press_release_nl
celery -A config.celery_app worker -l info

made with cookiecutter-django