Create requirements.txt

This commit is contained in:
Eden Kirin
2023-04-16 22:16:13 +02:00
parent 9a2b5befd3
commit e46edcc821
3 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ __pycache__
/env /env
/.venv /.venv
/settings.py /settings.py
/requirements.txt

View File

@ -14,3 +14,9 @@ run-dev:
--port 8010 \ --port 8010 \
--workers=1 \ --workers=1 \
--reload --reload
create-requirements:
@poetry export \
--without-hashes \
--format=requirements.txt \
> requirements.txt