-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
15 lines (15 loc) · 1.06 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
API_KEY_LOCKERS="Sintra api key"
TENANT="Sintra api tenant"
GOOGLE_CLIENT_ID="Client ID to use with Google OAuth"
GOOGLE_CLIENT_SECRET="Client secret to use with Google OAuth"
GOOGLE_REDIRECT_URI="Redirect URI to use with Google OAuth"
FACEBOOK_CLIENT_ID="Client ID to use with Facebook OAuth"
FACEBOOK_CLIENT_SECRET="Client secret to use with Facebook OAuth"
FACEBOOK_REDIRECT_URI='Redirect URI to use with Facebook OAuth'
COOKIE_SIGN="Crypto-Random string (Suggestion: at least 30 charaters) for encrypting OAuth cookies"
# To test mail functionalities, we suggest to use https://mailtrap.io
MAIL_HOST="Host of mail server"
MAIL_PORT="Port of mail server"
MAIL_USER="Username of sender email"
MAIL_PASS="Password of sender email"
SERVE_HTTP="set this to true if you want to host the project on HTTP (port 80), set it to false if you want to host the project on HTTPS (port 443, remember to generate the required certificates according to the instruction inside the /backend/certificates directory). IMPORTANT: serving on HTTP disables all the CORS protections and the OAuth login"