-
Notifications
You must be signed in to change notification settings - Fork 12
/
.env.example
63 lines (49 loc) · 1.79 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
# Copy this file and rename it as .env in the same directory
# Fill in the REQUIRED values
# REQUIRED Discord Bot settings
DISCORD_GUILD_ID = 960606557622657026 # Keep this as the dev server
DISCORD_OWNER_ID = 1234 # Your discord ID
DISCORD_CLIENT_ID = 1234 # In your Discord Developer Portal
DISCORD_CLIENT_TOKEN = abc123 # In your Discord Developer Portal
PRISMA_DB_URL = postgres://tripsit:SuperSecure123@tripbot_database:5432/tripsit
POSTGRES_DB_URL = postgres://tripsit:SuperSecure123@tripbot_database:5432/tripsit
# REQUIRED Database password
# This should be the same as the PRISMA_DB_URL and POSTGRS_DB_URL passwords
POSTGRESQL_PASSWORD = SuperSecure123
# Keep as development
NODE_ENV = development
# Feel free to change
TZ = "America/Chicago"
# Used for docker
COMPOSE_PROJECT_NAME = 'tripbot'
#### Everything after this is OPTIONAL ####
# Domains
DNS_DOMAIN = tripsit.io
# PG Admin
PGADMIN_PASSWORD = SuperSecure123
# Discord OAuth
DISCORD_CLIENT_SECRET = <Optional>
DISCORD_CLIENT_REDIRECT_URI = <Optional>
# Matrix bot
MATRIX_ACCESS_TOKEN = <Optional>
# Telegram bot
TELEGRAM_TOKEN = <Optional>
# OpenAI
# This key must be set for any AI functions to work.
# If you're not using this specific AI, then random values will work.
OPENAI_API_ORG = <Optional>
OPENAI_API_KEY = <Optional>
# Google Gemini
# This key must be set for any AI functions to work.
# If you're not using this specific AI, then random values will work.
GEMINI_KEY = <Optional>
# Other API Tokens
MOODLE_TOKEN = <Optional> # For Moodle API
GITHUB_TOKEN = <Optional> # For GitHub API
RAPID_TOKEN = <Optional> # For RapidAPI
WOLFRAM_TOKEN = <Optional> # For WolframAlpha API
IMGUR_ID = <Optional> # For Imgur API
IMGUR_SECRET = <Optional> # For Imgur API
YOUTUBE_TOKEN = <Optional> # For YouTube API
IMDB_TOKEN = <Optional> # For IMDB API
```