Wire the shared Gitea-backed suggestions panel: page, list/create + comments + upload API routes, sidebar link. Suggestions file as issues on bonna61/Moonbase; screenshot uploads persist via a mounted volume. Mirrors the FMB wiring. Secrets (NEXTAUTH_SECRET, GITEA_TOKEN) moved out of docker-compose.yml to an interpolated gitignored .env on the host, per CLAUDE.md (never commit the token). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
440 B
Plaintext
13 lines
440 B
Plaintext
# Copy to .env and fill in values for local dev.
|
|
|
|
DATABASE_URL="postgresql://tonym@localhost:5432/moonbase_dev"
|
|
|
|
NEXTAUTH_SECRET="change-me-generate-with-openssl-rand-base64-32"
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
|
|
# Suggestions module — files feedback as issues on a Gitea repo.
|
|
# Leave blank to disable (the Suggestions page shows a "not set up" state).
|
|
GITEA_URL="http://192.168.0.5:3022"
|
|
GITEA_TOKEN=""
|
|
GITEA_REPO="bonna61/Moonbase"
|