-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (21 loc) · 917 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (21 loc) · 917 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
# ==============================================================================
# DevSecOps PoC Monorepo - Root Environment Variables Template
# Copy this file to .env before running Docker Compose:
# cp .env.example .env
# ==============================================================================
# Shared Secrets
DJANGO_SECRET_KEY=django-insecure-dev-only-secret-key-not-for-production
DJANGO_DEBUG=False
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1,identity-service,web,dashboard
# Default Superadmin Account Initialization
DJANGO_SUPERUSER_USERNAME=admin
DJANGO_SUPERUSER_EMAIL=admin@devsecops.local
DJANGO_SUPERUSER_PASSWORD=AdminPassword123!
# Cross-Origin Resource Sharing (CORS)
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://localhost:4200,http://127.0.0.1:4200
# Host Port Mapping
WEB_PORT=3000
DASHBOARD_PORT=4200
IDENTITY_PORT=8001
ORDERS_PORT=8002
NOTIFICATION_PORT=8003