-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
56 lines (44 loc) · 1.25 KB
/
.env.example
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
# -----------------
# Env
# -----------------
ENV=dev
PORT=3000
# -----------------
# Cloud
# -----------------
AWS_ENDPOINT=http://localstack:4566
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test
AWS_REGION=us-east-1
# -----------------
# Providers
# -----------------
# Google
GOOGLE_CLIENT_ID=foo
GOOGLE_CLIENT_SECRET=foo
# Facebook
FACEBOOK_CLIENT_ID=foo
FACEBOOK_CLIENT_SECRET=foo
# -----------------
# Tokens
# -----------------
PASETO_PRIVATE_KEY=2MPoBMMJwdnHwx5qIso9RcxR5o3SycCgBgWFeHCE2Oz6uI3sCLGOQLqwdmRAPFmU28UPMc9FGuncPy3tpKq+bg==
# -----------------
# Databases
# -----------------
DATABASE_URL=postgresql://username:password@postgres:5432/database?schema=public
# -----------------
# Feature Flags
# -----------------
# Allows the account creation through passwordless email
FF_CREATE_FROM_EMAIL=1
# Allows the account creation through passwordless phone number reiciving SMS
FF_CREATE_FROM_PHONE=1
# Allows the account creation through Google account (Auth2.0)
FF_CREATE_FROM_GOOGLE=1
# Allows the account creation through Facebook account (Auth2.0)
FF_CREATE_FROM_FACEBOOK=1
# Allows the account creation through Discord account (Auth2.0)
FF_CREATE_FROM_DISCORD=1
# Allows the PARTIAL account creation through Discord ID
FF_PARTIAL_CREATE_FROM_DISCORD=1