-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (46 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
56 lines (46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Environment Setup
# Set to true by the setup wizard once the instance is initialised.
# Absent entirely = an install that predates the wizard; it is left alone.
SETUP_COMPLETE=false
NODE_ENV=development
PORT=5201
API_BASE_URL=http://localhost:5201
FRONTEND_URL=http://localhost:5200
# Database
DATABASE_URL="postgresql://postgres:postgress@localhost:5432/theblueprintcode?schema=public"
MIGRATIONS_AUTO_APPLY=true
# Database Pool Settings
DB_POOL_MAX=20
TENANT_POOL_MAX=10
TENANT_POOL_IDLE_TTL_MS=30000
# Redis / Queues
REDIS_HOST=localhost
REDIS_PORT=6379
# JWT Authentication
JWT_ACCESS_SECRET=your_jwt_access_secret
JWT_REFRESH_SECRET=your_jwt_refresh_secret
JWT_ACCESS_EXPIRES_IN=15m
JWT_REFRESH_EXPIRES_IN=30d
# Email / SMTP
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_USER=
SMTP_PASS=
MAIL_FROM=hello@yourdomain.com
# SSO - Google
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# SSO - GitHub
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# SSO - Microsoft (Azure AD)
MICROSOFT_CLIENT_ID=
MICROSOFT_CLIENT_SECRET=
# SSO - LinkedIn (OpenID Connect)
LINKEDIN_CLIENT_ID=
LINKEDIN_CLIENT_SECRET=
# SSO - Apple
APPLE_CLIENT_ID=
APPLE_TEAM_ID=
APPLE_KEY_ID=
APPLE_PRIVATE_KEY=