-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy path.env.example
More file actions
46 lines (38 loc) · 1012 Bytes
/
.env.example
File metadata and controls
46 lines (38 loc) · 1012 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
35
36
37
38
39
40
41
42
43
44
45
46
#DATABASE Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=myapp
DB_USER=postgres
DB_PASSWORD=password
#TEST DATABASE Configuration
TEST_DB_HOST=localhost
TEST_DB_PORT=5432
TEST_DB_NAME=myapp_test
TEST_DB_USER=postgres
TEST_DB_PASSWORD=password
#Connection Pooling
DB_CONNECTION_TIMEOUT=20000
DB_ACQUIRE_TIMEOUT=20000
DB_MAX_CONNECTIONS=20
DB_MIN_CONNECTIONS=5
DB_IDLE_TIMEOUT=30000
#LOGGING
DB_LOGGING=true
LOG_LEVEL=info
#Environment
NODE_ENV=development
#Backup Configuration
BACKUP_PATH=./backups
BACKUP_RETENTION_DAYS=30
#Google OAuth
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_CALLBACK_URL=http://localhost:3000/auth/google/callback
#Discord Integration
DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/your-webhook-url
DISCORD_BOT_NAME=Quest Service Bot
DISCORD_PUBLIC_KEY=your-discord-public-key
#Twitter/X Integration
TWITTER_CLIENT_ID=your-twitter-client-id
TWITTER_CLIENT_SECRET=your-twitter-client-secret
APP_URL=http://localhost:3000