- Migrated from Python pre-commit to NodeJS-native solution - Reorganized documentation structure - Set up Husky + lint-staged for efficient pre-commit hooks - Fixed Dockerfile healthcheck issue - Added comprehensive documentation index
26 lines
651 B
Plaintext
26 lines
651 B
Plaintext
# Demo Environment Configuration for RxMinder
|
|
# This demonstrates the template-based approach
|
|
|
|
# Application Configuration
|
|
APP_NAME=my-rxminder
|
|
INGRESS_HOST=rxminder.demo.local
|
|
|
|
# Docker Image Configuration
|
|
DOCKER_IMAGE=my-registry.com/rxminder:demo
|
|
|
|
# Database Configuration (no base64 encoding needed!)
|
|
COUCHDB_USER=admin
|
|
COUCHDB_PASSWORD=super-secure-demo-password-123
|
|
|
|
# Storage Configuration (NEW!)
|
|
STORAGE_CLASS=fast-ssd
|
|
STORAGE_SIZE=10Gi
|
|
|
|
# Frontend Configuration
|
|
VITE_COUCHDB_URL=http://localhost:5984
|
|
VITE_COUCHDB_USER=admin
|
|
VITE_COUCHDB_PASSWORD=super-secure-demo-password-123
|
|
|
|
# Application Settings
|
|
APP_BASE_URL=http://rxminder.demo.local
|