Files
The_Great_Excel_Project/makefile
2026-07-16 16:31:36 +03:00

12 lines
158 B
Makefile

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