-
Notifications
You must be signed in to change notification settings - Fork 19
/
.env.example
38 lines (24 loc) · 1.18 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
### REQUIRED INPUTS ###
NEXT_PUBLIC_APP_URI=<URL OF WEBPAGE>
OWNER_ID=<DISCORD USER ID OF MAIN ADMIN>
CLIENT_ID=<DISCORD CLIENT ID>
CLIENT_SECRET=<DISCORD CLIENT SECRET>
JWT_CODE=<RANDOM STRING>
MONGODB_URI=<MONGO CONNECTION URL>
JWT_HS512={"kty":"oct","kid":"-token-","alg":"HS512","k":"-token-"}
MOVIE_API_KEY=<TMDB API KEY>
#AUTH ENDPOINT - Set by default
NEXTAUTH_URL=${NEXT_PUBLIC_APP_URI}/api/auth
### ALLOWED USERS - Limit only certain discord users to log in###
#ALLOWED_USERS=<DISCORD USER IDS OF ALLOWED USERS IN STRING FORMAT: 218047950813659136,143699512790089729>
### DISCORD BOT ###
# Only uncomment these if you want to use the bot at https://github.com/mah51/scuffedmdb-bot
# WEBHOOK_URL=<WEBHOOK URL>
# WEBHOOK_TOKEN=<WEBHOOK TOKEN>
#### CUSTOMISATIONS
# Uncomment to set the name of the webapp
# NEXT_PUBLIC_SITE_NAME=<NAME OF WEBSITE / DEFAULT IS SCUFFEDMDB>
# NEXT_PUBLIC_SHORT_SITE_NAME=<SHORT NAME OF WEBSITE / DEFAULT IS SMDB (for mobile etc.)>
# COLOR_THEME=purple
# purple (default) | red | orange | yellow | green | teal | blue | cyan | pink | gray
# SECONDARY_COLOR_THEME = ./utils/utils has default pairs of colours but if you want to customise yours, use this option.