Add field help dialog with cultivar/process reference notes
Test and deploy / test-and-deploy (push) Successful in 1m32s
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]>
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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
|
||||
Reference in New Issue
Block a user