Files
greatbear/.gitignore
T
tanshu 0ff90cde27 Rebuild deploy process on the project template
- Dockerfile: deps → builder → pb-downloader → runner stages, cross-arch
  (BUILDPLATFORM node stages, TARGETARCH PocketBase binary), Debian slim
  runner, VOLUME /app/pb_data, dual healthcheck, docker-entrypoint.sh
- docker-entrypoint.sh: bash supervisor replacing scripts/run-all.mjs
- Makefile: build-production (multi-arch push from git remote),
  build-check, build-check-local
- deploy.sh [tag]: make build-production then ansible-playbook with tag
- drop .env/.env.example (credentials live in ansible/vars/default.yml)
2026-09-03 10:24:48 +05:30

31 lines
449 B
Plaintext

# Dependencies / builds
node_modules/
app/node_modules/
app/.output/
app/.nitro/
app/dist/
.npm-cache/
# Secrets
.env
# Local PocketBase data & scratch
pb_data/
.tmp-pb/
scripts/*.log
# Design sources (kept out of the repo; see stitch export zip)
design/
stitch_the_great_bear_microbrewery.zip
# Reference deployment template from another project
ansible-sample/
# Editor / OS
.DS_Store
*.log
.idea/
.vscode/
Dockerfile-sample
deploy-sample.sh