Files
snowspeederandClaude Sonnet 5 84fb396c7d
Test and deploy / test-and-deploy (push) Successful in 1m32s
Add field help dialog with cultivar/process reference notes
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]>
2026-07-31 06:37:33 -04:00

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