This commit is contained in:
2026-07-16 16:31:36 +03:00
commit 3c8d2dd572
26 changed files with 1684 additions and 0 deletions

11
makefile Normal file
View File

@@ -0,0 +1,11 @@
VENV=source .venv/bin/activate;
.PHONY:
run, m_gen, m_up
run:
${VENV} python3 main.py
m_gen:
alembic revision --autogenerate
m_up:
alembic upgrade head