Test and deploy / test-and-deploy (push) Successful in 1m32s
Adds a help-dialog UI (field-help.js/field-help-content.js) surfacing per-field guidance, expands cultivar and process reference data with cup notes, sweet-spot width, and watch-fors, and adds a Makefile for common npm tasks. Co-Authored-By: Claude Sonnet 5 <[email protected]>
25 lines
428 B
Makefile
25 lines
428 B
Makefile
PORT ?= 8090
|
|
|
|
.PHONY: all install start dev clean restart
|
|
|
|
all: install
|
|
|
|
## Install dependencies
|
|
install:
|
|
npm install
|
|
|
|
## Start the server in production mode
|
|
start:
|
|
PORT=$(PORT) npm start
|
|
|
|
## Start the server in development mode (auto-restart on file changes)
|
|
dev:
|
|
PORT=$(PORT) npm run dev
|
|
|
|
## Remove node_modules and lockfile
|
|
clean:
|
|
rm -rf node_modules package-lock.json
|
|
|
|
## Restart the server
|
|
restart: clean install start
|