not really known
Go to file
2023-08-27 04:15:52 +03:00
.envs major fixes 2023-08-26 09:53:03 +03:00
.github major fixes 2023-08-26 09:53:03 +03:00
compose docker fixes 2023-08-26 09:59:56 +03:00
config update openai, added qr and more 2023-08-26 14:10:10 +03:00
locale Initial commit 2023-08-26 01:17:47 +03:00
logs added numeric hints 2023-08-26 10:44:23 +03:00
ml final updates and fixes 2023-08-27 04:15:52 +03:00
pitch_deck_generator final updates and fixes 2023-08-27 04:15:52 +03:00
utility Initial commit 2023-08-26 01:17:47 +03:00
.dockerignore Initial commit 2023-08-26 01:17:47 +03:00
.editorconfig Initial commit 2023-08-26 01:17:47 +03:00
.env.template Initial commit 2023-08-26 01:17:47 +03:00
.gitattributes Initial commit 2023-08-26 01:17:47 +03:00
.gitignore major fixes 2023-08-26 09:53:03 +03:00
.pre-commit-config.yaml updated openai, added pdt to pptx convert 2023-08-27 00:23:57 +03:00
.pylintrc Initial commit 2023-08-26 01:17:47 +03:00
data.json update openai, added qr and more 2023-08-26 14:10:10 +03:00
local.yml Initial commit 2023-08-26 01:17:47 +03:00
manage.py Initial commit 2023-08-26 01:17:47 +03:00
poetry.lock major updates, added mokup, docker fix 2023-08-26 17:16:07 +03:00
production.yml Initial commit 2023-08-26 01:17:47 +03:00
pyproject.toml major updates, added mokup, docker fix 2023-08-26 17:16:07 +03:00
pytest.ini Initial commit 2023-08-26 01:17:47 +03:00
README.md Update README.md 2023-08-27 03:19:45 +03:00
setup.cfg Initial commit 2023-08-26 01:17:47 +03:00

Pitch Deck Generator

$ docker-compose -f local.yml up

Basic Commands

Runserver

$ ./manage.py runserver_plus

Type checks

Running type checks with mypy:

$ mypy pitch_deck_generator

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 pitch_deck_generator
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