build and deploy Formulation application
Build & Deploy Formulation / Build & Push Image (push) Successful in 15s
Build & Deploy Formulation / deploy (push) Successful in 12s

Consolidate the application, culinary data model, read-only runtime, and registry-backed deployment.
This commit is contained in:
2026-08-13 18:08:25 -05:00
parent e89d003d71
commit 816b28e179
223 changed files with 565 additions and 1243 deletions
+6 -11
View File
@@ -7,23 +7,18 @@
"npm": ">=9.6.5"
},
"scripts": {
"dev": "npm run dev:site",
"dev:site": "npm run site:project && astro dev --config astro.config.mjs --port 4321",
"dev": "npm run dev:app",
"dev:app": "astro dev --config astro.app.config.mjs --port 4322",
"restart:app": "node scripts/restart-app.mjs",
"check": "npm run check:site && npm run check:app",
"check:site": "npm run site:project && astro check --config astro.config.mjs",
"dev:readonly": "FORMULATION_READ_ONLY=true astro dev --config astro.app.config.mjs --port 4399",
"check": "npm run check:app",
"check:app": "astro check --config astro.app.config.mjs",
"build": "npm run build:site && npm run build:app",
"build:site": "npm run site:project && astro check --config astro.config.mjs && astro build --config astro.config.mjs",
"build": "npm run build:app",
"build:app": "astro check --config astro.app.config.mjs && astro build --config astro.app.config.mjs",
"preview": "npm run preview:site",
"preview:site": "astro preview --config astro.config.mjs --port 4321",
"start": "node dist/app/server/entry.mjs",
"start:readonly": "FORMULATION_READ_ONLY=true HOST=127.0.0.1 PORT=4399 node dist/app/server/entry.mjs",
"preview:app": "astro preview --config astro.app.config.mjs --port 4322",
"test": "vitest run",
"site:project": "node scripts/site-project.mjs",
"db:sync": "npm run db:migrate",
"db:migrate": "node scripts/db-migrate.mjs",
"db:reset": "node scripts/db-sync.mjs --reset",
"db:import:yaml": "node scripts/db-sync.mjs --reset"
},