Initial commit

This commit is contained in:
sonny 2023-06-24 13:50:38 +02:00
parent f4cc49896a
commit baf660cdaf
8 changed files with 229 additions and 620 deletions

18
Makefile Normal file
View file

@ -0,0 +1,18 @@
# Note: run this file from within your virtualenv!
#
#
# Build dependencies
build:
pip-compile --output-file=requirements/base.txt pyproject.toml
pip-compile --extra=development --output-file=requirements/development.txt pyproject.toml
pip-compile --extra=development --extra=ci --output-file=requirements/ci.txt pyproject.toml
pip-compile --extra=sentry-enabled --output-file=requirements/production.txt pyproject.toml
# Install for development
install-dev:
python -m pip install -r requirements/development.txt
python -m pip install -e ".[development]"
install-production:
python -m pip install -r requirements/production.txt
python -m pip install ".[sentry-enabled]"