Skeleton ready

This commit is contained in:
2026-07-08 23:01:55 +04:00
commit d9e5effdce
75 changed files with 1989 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
Compose = docker compose --env-file .env -f deploy/local/compose.yaml
build:
@$(Compose) build
@$(Compose) up -d
start:
@$(Compose) start
stop:
@$(Compose) stop
restart:
@$(Compose) restart
delete:
@$(Compose) down