-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 980 Bytes
/
.env.example
File metadata and controls
31 lines (23 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# CinemaList Docker Compose Environment Variables
# Copy this file to .env and fill in your values
# ============================================
# HashiCorp Vault Configuration (Required)
# ============================================
# Vault server address
VAULT_ADDRESS=http://your-vault-server:8200
# Vault authentication token
VAULT_TOKEN=hvs.YOUR_VAULT_TOKEN_HERE
# Vault KV mount path (default: kv)
VAULT_MOUNT_PATH=kv
# Vault secret path (leave empty to load all secrets from mount path)
# If specified, only secrets from this path will be loaded
VAULT_SECRET_PATH=
# ============================================
# MongoDB Configuration (Optional)
# ============================================
# If you prefer to use environment variables instead of Vault for MongoDB
# Leave empty to use Vault configuration
# MongoDB connection string (e.g., mongodb://user:password@mongo:27017)
MONGO_CONNECTION_STRING=
# MongoDB database name
MONGO_DATABASE_NAME=CinemaListDb