-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
32 lines (29 loc) · 1.14 KB
/
.env.sample
File metadata and controls
32 lines (29 loc) · 1.14 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
DEEPLINE_HOST=0.0.0.0
DEEPLINE_PORT=9091
DEEPLINE_APP_ENV=local
DEEPLINE_CRYPTO_ENFORCEMENT_MODE=permissive
DEEPLINE_STORE_MODE=memory
DEEPLINE_RATE_LIMITER_MODE=memory
DEEPLINE_DATABASE_USER=deepline
DEEPLINE_DATABASE_PASSWORD=change-me
DEEPLINE_DATABASE_MAX_POOL_SIZE=10
DEEPLINE_BLOB_STORAGE_ROOT=.deepline/blobs
DEEPLINE_MAX_ENCRYPTED_UPLOAD_BYTES=26214400
DEEPLINE_MESSAGE_WRITE_LIMIT_PER_MINUTE=120
DEEPLINE_UPLOAD_SESSION_LIMIT_PER_MINUTE=30
DEEPLINE_BLOB_UPLOAD_LIMIT_PER_MINUTE=20
DEEPLINE_INVITE_CREATE_LIMIT_PER_HOUR=20
# Planned production adapters
DEEPLINE_DATABASE_URL=jdbc:postgresql://localhost:5432/deepline
DEEPLINE_REDIS_URL=redis://localhost:6379/0
DEEPLINE_OBJECT_STORAGE_BUCKET=deepline-encrypted-blobs
# Push notification configuration (optional)
# FCM (Firebase Cloud Messaging) for Android
DEEPLINE_FCM_CREDENTIALS_PATH=/path/to/firebase-service-account.json
DEEPLINE_FCM_PROJECT_ID=your-firebase-project-id
# APNs (Apple Push Notification service) for iOS
DEEPLINE_APNS_KEY_PATH=/path/to/AuthKey_XXXXX.p8
DEEPLINE_APNS_KEY_ID=XXXXXXXXXX
DEEPLINE_APNS_TEAM_ID=XXXXXXXXXX
DEEPLINE_APNS_BUNDLE_ID=dev.hyo.deepline
DEEPLINE_APNS_PRODUCTION=false