6fdf29f040
- Dockerfile (Next.js standalone, Multi-Stage) + .dockerignore - deploy.sh fuer strom-next angepasst (Registry docker.citysensor.de, multiplatform build & push) - docker-compose.prod.yml: Netzwerk 'smarthome' (external), InfluxDB als Host 'influx', alle Env-Defaults gesetzt, INFLUX_TOKEN aus .env - .env.production.example (nur Token/Port), public/ fuer den Image-Build - README: Deploy-Anleitung Lokal verifiziert: Image baut, Container startet und liefert HTTP 200. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
431 B
Plaintext
40 lines
431 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# env files
|
|
.env*
|
|
!.env.example
|
|
!.env.local.example
|
|
!.env.production.example
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|