-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.template
More file actions
18 lines (15 loc) · 712 Bytes
/
env.template
File metadata and controls
18 lines (15 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Environment template for Docker Compose setups
# Copy this file to .env and set your own secure values
# ALL VARIABLES ARE REQUIRED - no defaults provided for security
# MongoDB Configuration (set your own secure credentials)
MONGODB_USERNAME=your_mongodb_username
MONGODB_PASSWORD=your_secure_mongodb_password
MONGODB_DATABASE=your_database_name
# CouchDB Configuration (set your own secure credentials)
COUCHDB_USERNAME=your_couchdb_username
COUCHDB_PASSWORD=your_secure_couchdb_password
COUCHDB_DATABASE=your_database_name
# SECURITY NOTE:
# - Never use default credentials like admin/password
# - Use strong passwords in production
# - Keep your .env file secure and never commit it to version control