forked from azimuttapp/azimutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
128 lines (100 loc) · 2.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# explanations on: https://github.com/azimuttapp/azimutt/blob/main/INSTALL.md#environment-variables
# Technical requirements
export PHX_SERVER=true
export PHX_HOST=localhost
export PORT=4000
export SECRET_KEY_BASE=CHANGE_ME
export DATABASE_URL=postgresql://postgres:postgres@localhost/azimutt_dev
# export DATABASE_IPV6=true
# export DATABASE_POOL_SIZE=10
# export DATABASE_ENABLE_SSL=true
## File Storage (S3)
### Local
export FILE_STORAGE_ADAPTER=local
### S3
# export FILE_STORAGE_ADAPTER=s3
# export S3_BUCKET=
# export S3_HOST=
# export S3_KEY_ID=
# export S3_KEY_SECRET=
# export S3_REGION=
# export S3_FOLDER=
## Email adapter
### Mailgun
# export EMAIL_ADAPTER=mailgun
# export MAILGUN_DOMAIN=
# export MAILGUN_API_KEY=
# export MAILGUN_BASE_URL=
### Gmail, generate token: https://developers.google.com/oauthplayground
# export EMAIL_ADAPTER=gmail
# export GMAIL_ACCESS_TOKEN=
### smtp
# export EMAIL_ADAPTER=smtp
# export SMTP_RELAY=
# export SMTP_USERNAME=
# export SMTP_PASSWORD=
# export SMTP_PORT=
# export SUPPORT_EMAIL=
# export SENDER_EMAIL=
# Key features
## Authentification config
### Password
export AUTH_PASSWORD=true
### Github
# export AUTH_GITHUB=true
# export GITHUB_CLIENT_ID=
# export GITHUB_CLIENT_SECRET=
### Not implementied yet
# export AUTH_LINKEDIN=
# export AUTH_GOOGLE=
# export AUTH_TWITTER=
# export AUTH_FACEBOOK=
# export AUTH_SAML=
# Optional features & services
# export GATEWAY_URL=https://gateway.azimutt.app
# export SKIP_ONBOARDING_FUNNEL=true
# export SKIP_EMAIL_CONFIRMATION=true
# export REQUIRE_EMAIL_CONFIRMATION=true
# export [email protected]
# export ORGANIZATION_DEFAULT_PLAN=free
# export GLOBAL_ORGANIZATION=00000000-0000-0000-0000-000000000000
# export GLOBAL_ORGANIZATION_ALONE=true
## Sentry
# export SENTRY=true
# export SENTRY_BACKEND_DSN=
# export SENTRY_FRONTEND_DSN=
## Twitter
# export TWITTER=true
# export TWITTER_CONSUMER_KEY=
# export TWITTER_CONSUMER_SECRET=
# export TWITTER_ACCESS_TOKEN=
# export TWITTER_ACCESS_SECRET=
# Other features you will probably not need
# export PUBLIC_SITE=true
## GitHub, personal token (https://github.com/settings/tokens)
# export GITHUB=true
# export GITHUB_ACCESS_TOKEN=
## Posthog
# export POSTHOG=true
# export POSTHOG_HOST=
# export POSTHOG_KEY=
## Bento
# export BENTO=true
# export BENTO_SITE_KEY=
# export BENTO_PUBLISHABLE_KEY=
# export BENTO_SECRET_KEY=
## Stripe
# export STRIPE=true
# export STRIPE_API_KEY=sk_test_abcdef
# export STRIPE_WEBHOOK_SIGNING_SECRET=whsec_1234
# export STRIPE_PRICE_PRO_MONTHLY=
## Clever Cloud Addon
# export CLEVER_CLOUD=true
# export CLEVER_CLOUD_ADDON_ID=
# export CLEVER_CLOUD_PASSWORD=
# export CLEVER_CLOUD_SSO_SALT=
## Heroku Addon
# export HEROKU=true
# export HEROKU_ADDON_ID=
# export HEROKU_PASSWORD=
# export HEROKU_SSO_SALT=