-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
36 lines (32 loc) · 1.48 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
# This app's name e.g. Wassup
APP_NAME=Wassup
# This app's public facing URL e.g. https://app.wassuphq.com
APP_URL=http://localhost:4000
# App's hostname e.g. wassupapp.com
APP_HOSTNAME=localhost
# Email address used as "from" to send all emails, e.g. [email protected]
# A really long secret, can be generated using `mix phx.gen.secret` task
SECRET_KEY_BASE=auwK0JL2KOaiPWHRJcbSzB2p2IFmlj7uW8CmTrwenM6pjYsf4lLH5vWO1Z+UwaXM
# Port to run the Phoenix on inside the container
PORT=4000
# Database URL in the form: "postgres://USER:PASS@HOST/database"
# Note that if the database does not support SSL then pass in `ssl=false` query parameter.
DATABASE_URL=postgres://postgres:[email protected]/wassup_app_prod?ssl=false
# Database connection pool size
POOL_SIZE=10
# Variables to allow sign-in using Google.
# Please Follow
# https://github.com/wassuphq/wassup/wiki/Creating-an-OAuth-2.0-client-to-enable-sign-in-using-Google
# for the step-by-step guide to obtain the client ID and client secret values.
GOOGLE_CLIENT_ID=XXXXXXX
GOOGLE_CLIENT_SECRET=XXXXXXX
GOOGLE_REDIRECT_URI=http://localhost:4000/auth/google/callback
# If set to "true", user registration feature would be disabled. Default is "false".
REGISTRATION_DISABLED=false
# Mail delivery service's SMTP configuration
SMTP_PROVIDER_DOMAIN=XXXXXX # e.g. smtp.mandrill.com
SMTP_USERNAME=XXXXXX
SMTP_PASSWORD=XXXXXX
# Google Analytics tracking ID (OPTIONAL)
GOOGLE_ANALYTICS_TRACKING_ID=UA-XXXXXXX-X