Add honeycomb to backend

This commit is contained in:
Dave Gallant
2022-11-05 17:34:25 -04:00
parent cfbd2506d2
commit 888442db9b
8 changed files with 578 additions and 1 deletions

View File

@@ -23,3 +23,9 @@ backend:
frontend:
@npx vue-cli-service serve
.PHONY: server
## up: Build and run in docker compose
up:
@if [ -e .env ]; then echo "Missing file: .env"; fi
docker compose up -d
.PHONY: up