This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env.example
62 lines (52 loc) · 1.99 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
# The For production environments, always set this to production.
# By default, the NODE_ENV is "development" which runs considerably slower than "production".
# In "development" mode, BrowserSync (https://www.browsersync.io/) is used to automatically
# refresh the browser page when content is changed on disc.
NODE_ENV=production
PORT=3000
# Control which debug messages are logged.
# see: https://www.npmjs.com/package/debug#environment-variables
DEBUG=discord-user-manager:*
# Whether to use Browser Sync or not
# See https://github.com/schmich/connect-browser-sync
# Set to true to enable Browser Sync.
USE_BROWSER_SYNC=false
# Admin user.
ADMIN_USERNAME=admin
ADMIN_PASSWORD=[RANDOM_25]
# Session secret
SESSION_SECRET=[RANDOM_25]
# SMTP Connection string for sending login messages.
# The SMTP URL should have the following format:
# (smtp|smpts)://username@[email protected]
# Username and password must be in URL encoded format.
# (see: https://www.w3schools.com/tags/ref_urlencode.ASP)
# For example, an SMTP URI for GMail would be:
# smtps://user%40gmail.com:[email protected]
# Note: To use Gmail, you may need to enable "Less secure
# app access" (see: https://myaccount.google.com/lesssecureapps) or
# enable 2-step authentication and use an App password
# (see: https://support.google.com/accounts/answer/185833)
# By default, SMTP server running on localhost will be used.
SMTP_URL=smtp://localhost
# Used for testing SMTP mail.
# Create a test acount at https://ethereal.email/
# or use your own email address.
TEST_EMAIL=
# Azure AD OAuth2 Authentication
AZURE_CLIENT_ID=
AZURE_CLIENT_SECRET=
AZURE_REDIRECT_URI=http://localhost:3000/azure/callback
# Google OAuth2 Authentication
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URI=http://localhost:3000/google/callback
# Discord Bot
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=
DISCORD_REDIRECT_URI=http://localhost:3000/discord/callback
DISCORD_BOT_TOKEN=
DISCORD_SERVER_ID=
# Only for testing
TEST_USER_DISCORD_ID=
TEST_USER_ACCESS_TOKEN=