3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/.env.example

85 lines
2.5 KiB
Text
Raw Normal View History

# ==========================
# GENERAL OPTIONS
# ==========================
2022-06-26 19:30:46 +03:00
# 32 character encryption key
KEY=
2022-06-01 19:11:44 +03:00
2022-06-26 19:30:46 +03:00
# Values from the Discord developer portal
2022-06-01 19:11:44 +03:00
CLIENT_ID=
CLIENT_SECRET=
BOT_TOKEN=
2022-08-07 13:58:47 +03:00
# The defaults here automatically work for the development environment.
# For production, change localhost:3300 to your domain.
2022-06-26 19:30:46 +03:00
DASHBOARD_URL=https://localhost:3300
API_URL=https://localhost:3300/api
# Comma-separated list of user IDs who should have access to the bot's global commands
STAFF=
# A comma-separated list of server IDs that should be allowed by default
DEFAULT_ALLOWED_SERVERS=
2022-06-26 19:30:46 +03:00
# Only required if relevant feature is used
#PHISHERMAN_API_KEY=
# ==========================
# DEVELOPMENT
# NOTE: You only need to fill in these values for running the development environment
# ==========================
DEVELOPMENT_WEB_PORT=3300
2022-06-01 19:11:44 +03:00
# The MySQL database running in the container is exposed to the host on this port,
# allowing access with database tools such as DBeaver
DEVELOPMENT_MYSQL_PORT=3356
2022-06-01 19:11:44 +03:00
# Password for the Zeppelin database user
DEVELOPMENT_MYSQL_PASSWORD=password
2022-06-01 19:11:44 +03:00
# Password for the MySQL root user
DEVELOPMENT_MYSQL_ROOT_PASSWORD=password
2022-06-01 19:11:44 +03:00
# The development environment container has an SSH server that you can connect to.
# This is the port that server is exposed to the host on.
DEVELOPMENT_SSH_PORT=3022
DEVELOPMENT_SSH_PASSWORD=password
2022-06-01 19:11:44 +03:00
# If your user has a different UID than 1000, you might have to fill that in here to avoid permission issues
#DEVELOPMENT_UID=1000
# ==========================
# PRODUCTION - STANDALONE
# NOTE: You only need to fill in these values for running the standalone production environment
# ==========================
STANDALONE_WEB_PORT=80
2022-08-06 22:18:21 +03:00
# The MySQL database running in the container is exposed to the host on this port,
# allowing access with database tools such as DBeaver
STANDALONE_MYSQL_PORT=3356
2022-07-16 22:16:34 +03:00
# Password for the Zeppelin database user
STANDALONE_MYSQL_PASSWORD=
2022-07-16 22:16:34 +03:00
# Password for the MySQL root user
STANDALONE_MYSQL_ROOT_PASSWORD=
# ==========================
# PRODUCTION - LIGHTWEIGHT
# NOTE: You only need to fill in these values for running the lightweight production environment
# ==========================
# Ports where the API/dashboard are exposed on the host
LIGHTWEIGHT_API_PORT=3001
LIGHTWEIGHT_DASHBOARD_PORT=3002
LIGHTWEIGHT_DB_HOST=
LIGHTWEIGHT_DB_PORT=
LIGHTWEIGHT_DB_USER=
LIGHTWEIGHT_DB_PASSWORD=
LIGHTWEIGHT_DB_DATABASE=
2024-04-06 11:54:31 +00:00
# If you want to add a prefix to API paths, such as /api, you can set that here
LIGHTWEIGHT_API_PATH_PREFIX=