feat: init

This commit is contained in:
h
2026-04-16 01:16:54 +02:00
commit 14bf1047ee
51 changed files with 2227 additions and 0 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
.PHONY: recreate down restart rebuild script
recreate:
docker compose --profile services up -d --force-recreate
down:
docker compose --profile services down
restart:
$(MAKE) recreate
deploy:
$(MAKE) recreate
$(MAKE) frontend
rebuild:
docker compose build
docker compose --profile services up -d
script:
@cd backend && docker compose --profile scripts run --rm script-runner scripts/$(subst .,/,$(word 2,$(MAKECMDGOALS))).py $(wordlist 3,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
%:
@: