67b07634ae
- app/: Emdash scaffold (Astro 6, node target) with cmses/plugins/pages collections - app/seed/seed.json: WordPress→Emdash parity for kotkanagrilli.fi (~30 entries) - Dockerfile + docker/entrypoint.sh: multi-stage build, single PVC at /app/state - deploy/helm/: chart mirroring emdash-kotkanagrilli (single-replica, sqlite, kotkan) - deploy/fleet-overlay/: HelmRelease/source/image-automation templates for anton-helm-workloads (staging + production) - .woodpecker/container.yaml: arm64 build, three OCI tags per push (immutable 0.1.<pipeline> + floating <branch> + <branch>-latest) - .ddev/: local dev with nginx proxy to emdash on :4321 - README/DEPLOYMENT/ARCHITECTURE/CLAUDE: docs covering the three-repo pipeline (cms-plugins + anton-helm-workloads + Gitea OCI registry)
37 lines
705 B
JSON
37 lines
705 B
JSON
{
|
|
"name": "cms-plugins-app",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"emdash": {
|
|
"label": "CMS plugins catalog",
|
|
"seed": "seed/seed.json"
|
|
},
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"start": "node ./dist/server/entry.mjs",
|
|
"bootstrap": "emdash init",
|
|
"typecheck": "astro check"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/node": "^10.0.5",
|
|
"@astrojs/react": "^5.0.0",
|
|
"astro": "~6.2.2",
|
|
"better-sqlite3": "^12.8.0",
|
|
"emdash": "^0.10.0",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.7"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"better-sqlite3",
|
|
"esbuild"
|
|
]
|
|
}
|
|
}
|