Files
Luna 18d0b333d2
ci / test (push) Successful in 11s
Initial service implementation
2026-07-16 20:16:05 +00:00

28 lines
300 B
Makefile

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