-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 1.18 KB
/
.env.example
File metadata and controls
33 lines (28 loc) · 1.18 KB
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
32
33
# Glense Environment Variables
# Copy this file to .env and fill in your values.
# Usage: docker compose --env-file .env up
# ===================
# Shared Secrets
# ===================
JWT_SECRET_KEY=YourSuperSecretKeyThatIsAtLeast32CharactersLongForHS256Algorithm
JWT_ISSUER=GlenseAccountService
JWT_AUDIENCE=GlenseApp
# Inter-service API key (used for service-to-service authentication)
INTERNAL_API_KEY=GlenseInternalServiceKey_ChangeMe_AtLeast32Chars!
# ===================
# Database Credentials
# ===================
POSTGRES_USER=glense
POSTGRES_PASSWORD=changeme
# ===================
# RabbitMQ Credentials
# ===================
RABBITMQ_USER=guest
RABBITMQ_PASS=guest
# ===================
# Connection Strings
# ===================
ACCOUNT_DB_CONNECTION_STRING=Host=postgres_account;Port=5432;Database=glense_account;Username=glense;Password=changeme
VIDEO_DB_CONNECTION_STRING=Host=postgres_video;Port=5432;Database=glense_video;Username=glense;Password=changeme
DONATION_DB_CONNECTION_STRING=Host=postgres_donation;Port=5432;Database=glense_donation;Username=glense;Password=changeme
CHAT_DB_CONNECTION_STRING=Host=postgres_chat;Port=5432;Database=glense_chat;Username=glense;Password=changeme