Initial release

This commit is contained in:
odweta
2026-09-10 12:43:40 +02:00
commit 42cc4eafa8
15 changed files with 7400 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
TAG := fakturovac
.PHONY: build, run, test, preview
build:
docker compose build
test:
npm test
run:
docker compose up --remove-orphans
rund:
docker compose up -d --remove-orphans
kill:
docker compose -p $(TAG) down
build-and-run: build run
test-and-run: test run
deploy: kill build test rund
deploy-no-kill: build test rund