Created Turnpike, event attendee and volunteer management
Built after prototype, Traverse, an attendee and volunteer list maintainer.
This commit is contained in:
commit
1033cdb29b
59 changed files with 8663 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.PHONY: build frontend-build dev clean
|
||||
|
||||
build: frontend-build
|
||||
CGO_ENABLED=0 go build -o turnpike .
|
||||
|
||||
frontend-build:
|
||||
cd frontend && npm ci && npm run build
|
||||
|
||||
dev:
|
||||
@echo "Run in two terminals:"
|
||||
@echo " Terminal 1: go run . --db dev.db"
|
||||
@echo " Terminal 2: cd frontend && npm run dev"
|
||||
|
||||
clean:
|
||||
rm -f turnpike dev.db
|
||||
rm -rf frontend/dist
|
||||
Loading…
Add table
Add a link
Reference in a new issue