-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.deploy.env.example
More file actions
57 lines (46 loc) · 1.7 KB
/
.deploy.env.example
File metadata and controls
57 lines (46 loc) · 1.7 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
# Production deployment configuration for milk2meat app
# Copy this file to .deploy.env and fill in your actual values
# DO NOT commit .deploy.env to version control!
# App and domain settings
APP_NAME=milk2meat
DOMAIN=app.example.org
ROOT_DOMAIN=example.org
# Dokku Host (This should match your SSH config)
DOKKU_HOST=dokku
# Database backup settings
BACKUP_AWS_ACCESS_KEY_ID=your-key
BACKUP_AWS_SECRET_ACCESS_KEY=your-key
BACKUP_AWS_DEFAULT_REGION=region
BACKUP_AWS_ENDPOINT_URL=https://example.com
BACKUP_BUCKET=some-bucket
# Django settings
# Leave DJANGO_SECRET_KEY empty to auto-generate
DJANGO_SECRET_KEY=
# If not explicitly specified, DJANGO_SERVER_EMAIL is set to DEFAULT_FROM_EMAIL
# DJANGO_SERVER_EMAIL=no-reply@example.org
DEFAULT_FROM_EMAIL="Milk2Meat App <no-reply@example.org>"
EMAIL_RECIPIENTS="John Doe <someone@example.com>"
# Email provider
BREVO_API_KEY=your_brevo_api_key
# Sentry settings
SENTRY_DSN=https://foo.ingest.de.sentry.io/bar
DJANGO_SENTRY_LOG_LEVEL=20
SENTRY_ENVIRONMENT=production
SENTRY_TRACES_SAMPLE_RATE=0.5
# Storage settings
AWS_ACCESS_KEY_ID=your-s3-access-key
AWS_SECRET_ACCESS_KEY=your-s3-secret-key
AWS_STORAGE_BUCKET_NAME=some-bucket
AWS_S3_ENDPOINT_URL=https://foo.somewhere.com
# AWS_S3_CUSTOM_DOMAIN=something.somewhere.org
# Leave AWS_LOCATION empty to auto-generate
AWS_LOCATION=
# SSL settings
LETSENCRYPT_EMAIL=email@example.com
# Database import settings (optional)
# DB_DUMP_FILE="path/to/local/dump.sql" # Only needed if importing a database
# Deployment settings
# Set to "true" to skip the git push
SKIP_DEPLOY=false
# Custom environment variables (semicolon-separated KEY=VALUE pairs)
ENV_CUSTOM_VARS="TURNSTILE_SITE_KEY=your_site_key;TURNSTILE_SECRET_KEY=your_secret_key"