- Add MinIO service to compose.yaml with named volume - Add generic /api/uploads POST+GET route with auth, 5 MB, image/* guards - Add src/lib/minio.ts singleton client with ensureBucket helper - Add garden Drizzle schema: containers, plants, care_logs, care_schedules, species_cache - Register garden module in src/modules/index.ts and src/lib/db.ts - Apply migration 0015_garden_schema.sql - Add MINIO_* and PERENUAL_API_KEY to .env.example - Add task briefs 70-75 for the full garden feature arc - Add uploads.spec.ts E2E test (RED → GREEN on route auth guard)
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
# Public app URL (used for OIDC redirect URIs, share links, etc.)
|
|
NEXT_PUBLIC_APP_URL=https://fam.ginnoir.com
|
|
|
|
# Postgres
|
|
DATABASE_URL=postgres://famapp:famapp@localhost:5432/famapp
|
|
|
|
# Auth.js
|
|
AUTH_SECRET=replace-with-openssl-rand-base64-32
|
|
|
|
# Local development only. Enables a /login "Dev login" button that creates a
|
|
# database session for DEV_LOGIN_EMAIL without contacting Authentik.
|
|
ENABLE_DEV_LOGIN=false
|
|
DEV_LOGIN_EMAIL=dev@famapp.local
|
|
DEV_LOGIN_NAME=Dev User
|
|
DEV_HOUSEHOLD_NAME=Home
|
|
|
|
# OIDC (Authentik)
|
|
AUTH_OIDC_ISSUER=https://auth.ginnoir.com/application/o/famapp/
|
|
AUTH_OIDC_CLIENT_ID=replace-me
|
|
AUTH_OIDC_CLIENT_SECRET=replace-me
|
|
|
|
# Web Push (generate with: pnpm vapid:generate — copy all three lines to .env)
|
|
VAPID_PUBLIC_KEY=
|
|
VAPID_PRIVATE_KEY=
|
|
VAPID_SUBJECT=mailto:you@example.com
|
|
|
|
# ntfy (optional fallback channel; leave blank to disable)
|
|
NTFY_URL=
|
|
NTFY_TOPIC=
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
|
|
# GitHub (required for pnpm release — creates a GitHub Release)
|
|
GITHUB_TOKEN=
|
|
|
|
# MinIO object storage (used for plant/container image uploads)
|
|
MINIO_ENDPOINT=http://localhost:9000
|
|
MINIO_ROOT_USER=famapp
|
|
MINIO_ROOT_PASSWORD=changeme
|
|
MINIO_BUCKET=garden
|
|
|
|
# Perenual plant species API (https://perenual.com — free tier available)
|
|
PERENUAL_API_KEY=
|