-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
108 lines (83 loc) · 2.82 KB
/
Copy pathenv.example
File metadata and controls
108 lines (83 loc) · 2.82 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# ============================================
# Docker Registry Configuration
# ============================================
DOCKER_REGISTRY=harbor.arpansahu.space
DOCKER_REPOSITORY=library
DOCKER_IMAGE_NAME=clock_work
DOCKER_IMAGE_TAG=latest
# ============================================
# Deployment Configuration
# ============================================
ENV_PROJECT_NAME=clock_work
SERVER_NAME=clock-work.arpansahu.space
DOCKER_PORT=8012
FLOWER_PORT=8051
FLOWER_SERVER_NAME=flower-clock-work.arpansahu.space
JENKINS_DOMAIN=jenkins.arpansahu.space
# ============================================
# Django Configuration
# ============================================
SECRET_KEY=
DEBUG=
# Set to True to use S3/MinIO for static files, False for local storage
USE_S3=
# ALLOWED_HOSTS supports:
# - Domain names: your-domain.com
# - Wildcards: .your-domain.com (all subdomains)
# - IP addresses: 127.0.0.1, 192.168.1.x
# - CIDR subnets: 10.42.0.0/16 (Kubernetes pod network)
ALLOWED_HOSTS=
DOMAIN=
PROTOCOL=
# ============================================
# Database Configuration
# ============================================
DATABASE_URL=
# ============================================
# Redis Configuration
# ============================================
REDIS_CLOUD_URL=
# ============================================
# Email Configuration (Mailjet)
# ============================================
# For better email deliverability:
# 1. Use verified domain in Mailjet sender settings
# 2. Configure SPF, DKIM, and DMARC records in your DNS
# 3. Use professional HTML templates (see templates/emails/)
# ============================================
MAIL_JET_API_KEY=
MAIL_JET_API_SECRET=
# Verified sender email (must be verified in Mailjet)
MAIL_JET_EMAIL_ADDRESS=
MY_EMAIL_ADDRESS=
# ============================================
# Object Storage (AWS S3/MinIO/Blackblaze)
# Using MinIO for object storage through nginx proxy
# API Endpoint: minioapi.arpansahu.space (nginx proxy to MinIO API)
# Console UI: minio.arpansahu.space (MinIO web console)
# For AWS S3: Set BUCKET_TYPE=AWS and use AWS endpoint
# ============================================
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_STORAGE_BUCKET_NAME=
# Options: MINIO, AWS, BLACKBLAZE
BUCKET_TYPE=
# ============================================
# Error Tracking (Sentry)
# ============================================
SENTRY_ENVIRONMENT=
SENTRY_DSH_URL=
SENTRY_ORG=arpansahu
SENTRY_PROJECT=clock_work
SENTRY_AUTH_TOKEN=
# ============================================
# Flower (Celery monitoring)
# ============================================
FLOWER_ADMIN_USERNAME=
FLOWER_ADMIN_PASS=
# ============================================
# Harbor Registry Credentials
# ============================================
HARBOR_URL=https://harbor.arpansahu.space
HARBOR_USERNAME=
HARBOR_PASSWORD=