- Dockerfiles: server (Bun, runs migrations then starts) and web (Vite build served by nginx with SPA fallback); .dockerignore - docker-compose.prod.yml (postgres + server + web) ready for Dokploy, with uploads/pgdata volumes and .env.production.example - README: deployment (Dokploy) + gitflow/versioning sections, Images mode, bots, i18n; CHANGELOG.md - bump packages to 0.1.0 Docker images built and validated end-to-end: server migrates + serves /health + /api/categories; web serves the SPA with VITE_SERVER_URL baked in. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
11 lines
115 B
Text
11 lines
115 B
Text
**/node_modules
|
|
**/dist
|
|
**/.turbo
|
|
**/uploads
|
|
.git
|
|
.github
|
|
**/*.log
|
|
**/.env
|
|
**/.env.*
|
|
!**/.env.example
|
|
**/.DS_Store
|