Initial service implementation
ci / test (push) Successful in 11s

This commit is contained in:
Luna
2026-07-16 20:16:05 +00:00
commit 18d0b333d2
27 changed files with 2953 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
PORT ?= 3000
.PHONY: install build dev start smoke docker-build docker-up docker-down
install:
npm install
build:
npm run build
dev:
npm run dev
start:
npm start
smoke:
npm run smoke
docker-build:
docker compose build
docker-up:
docker compose up -d
docker-down:
docker compose down