Files
The_Great_Excel_Project/makefile
2026-07-17 15:02:41 +03:00

12 lines
174 B
Makefile

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