Add .env and Kubernetes secrets.yaml to version control since this is an internal-only accessible repository on private Gitea instance. Configuration includes: - Docker registry: gitea-http.taildb3494.ts.net/will/adopt-a-street - CouchDB credentials for database access - JWT secret (64-character secure token) - Kubernetes secrets for adopt-a-street namespace Updated .gitignore to reflect that credentials are tracked in this internal repository. 🤖 Generated with OpenCode Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
35 lines
819 B
Bash
35 lines
819 B
Bash
# Docker Registry Configuration
|
|
# For Docker Hub: docker.io/username or just username
|
|
# For GitHub Container Registry: ghcr.io/username
|
|
DOCKER_REGISTRY=gitea-http.taildb3494.ts.net/will
|
|
|
|
# Docker Image Tag
|
|
TAG=latest
|
|
|
|
# CouchDB Configuration
|
|
COUCHDB_URL=http://couchdb:5984
|
|
COUCHDB_DB_NAME=adopt-a-street
|
|
COUCHDB_USER=admin
|
|
COUCHDB_PASSWORD=admin
|
|
COUCHDB_SECRET=change-this-secret-string
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=change-this-jwt-secret-key
|
|
|
|
# Node Environment
|
|
NODE_ENV=production
|
|
PORT=5000
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# Cloudinary Configuration (optional - for image uploads)
|
|
CLOUDINARY_CLOUD_NAME=
|
|
CLOUDINARY_API_KEY=
|
|
CLOUDINARY_API_SECRET=
|
|
|
|
# Stripe Configuration (optional - for payments)
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# OpenAI Configuration (optional - for AI features)
|
|
OPENAI_API_KEY=
|