This commit is contained in:
Егор Кандрушин 2026-04-08 00:07:51 +03:00
parent 98f51e5210
commit 6896fce3e8
7 changed files with 40 additions and 9 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
.DEFAULT_GOAL := help
-include .mk/outside.mk
-include .mk/inside.mk
help:
@echo "Outside commands:"
@echo " make up-dev - build and run dev container"
@echo " make up-prod - build and run prod container"
@echo ""
@echo "Inside container:"
@echo " make uvicorn-dev - run with hot reload"
@echo " make uvicorn-prod - run production"