-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.development
More file actions
34 lines (26 loc) · 839 Bytes
/
.env.development
File metadata and controls
34 lines (26 loc) · 839 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
32
33
34
# Development environment configuration for Container Engine
# Database Configuration
DATABASE_URL=postgresql://postgres:password@localhost:5432/container_engine
# Redis Configuration
REDIS_URL=redis://localhost:6379
# Server Configuration
PORT=3000
# JWT Configuration
JWT_SECRET=development-jwt-secret-key-not-for-production
JWT_EXPIRES_IN=3600
# API Key Configuration
API_KEY_PREFIX=ce_dev_
# Kubernetes Configuration
KUBERNETES_NAMESPACE=container-engine-dev
# Domain Configuration
DOMAIN_SUFFIX=your_domain_suffix
# Email Configuration - Mailtrap
MAILTRAP_SMTP_HOST=your_host
MAILTRAP_SMTP_PORT=587
MAILTRAP_USERNAME=your_mailtrap_username
MAILTRAP_PASSWORD=your_mailtrap_password
EMAIL_FROM=your_email
EMAIL_FROM_NAME=your_app_name
# Logging
RUST_LOG=container_engine=debug,tower_http=debug
KUBECONFIG_PATH=./k8sConfig.yaml