-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.example
More file actions
43 lines (32 loc) · 1.08 KB
/
.env.example
File metadata and controls
43 lines (32 loc) · 1.08 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
# bunQ Environment Configuration
# Server ports
TCP_PORT=6789
HTTP_PORT=6790
# Authentication (comma-separated tokens)
# AUTH_TOKENS=token1,token2,token3
# Database path
DATA_PATH=./data/bunq.db
# Node environment
NODE_ENV=development
# CORS origins (comma-separated, use * for all)
# CORS_ORIGINS=http://localhost:3000,https://app.example.com
# S3 Backup Configuration
# Enable automated backups to S3-compatible storage
S3_BACKUP_ENABLED=0
# S3 credentials (also supports AWS_* prefix)
# S3_ACCESS_KEY_ID=your-access-key
# S3_SECRET_ACCESS_KEY=your-secret-key
# S3_BUCKET=your-bucket-name
# S3_REGION=us-east-1
# S3 endpoint for non-AWS providers (optional)
# AWS S3: (leave empty, uses default)
# Cloudflare R2: https://<account-id>.r2.cloudflarestorage.com
# MinIO: http://localhost:9000
# DigitalOcean: https://<region>.digitaloceanspaces.com
# S3_ENDPOINT=
# Backup schedule (default: 6 hours)
# S3_BACKUP_INTERVAL=21600000
# Number of backups to retain (default: 7)
# S3_BACKUP_RETENTION=7
# Backup file prefix (default: backups/)
# S3_BACKUP_PREFIX=backups/