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-06-26 19:30:46 +03:00
|
|
|
DASHBOARD_URL=https://localhost:3300
|
|
|
|
API_URL=https://localhost:3300/api
|
|
|
|
|
2022-08-06 21:31:13 +03:00
|
|
|
# Comma-separated list of user IDs who should have access to the bot's global commands
|
|
|
|
STAFF=
|
|
|
|
|
2022-08-06 22:12:40 +03:00
|
|
|
# A comma-separated list of server IDs that should be allowed by default
|
|
|
|
DEFAULT_ALLOWED_SERVERS=
|
|
|
|
|
2022-06-26 19:30:46 +03:00
|
|
|
# When using the Docker-based development environment, this is only used internally. The API will be available at localhost:DOCKER_DEV_WEB_PORT/api.
|
2022-06-26 14:34:54 +03:00
|
|
|
API_PORT=3000
|
|
|
|
|
2022-06-26 19:30:46 +03:00
|
|
|
# Only required if relevant feature is used
|
|
|
|
#PHISHERMAN_API_KEY=
|
|
|
|
|
2022-06-26 14:34:54 +03:00
|
|
|
#
|
|
|
|
# DOCKER (DEVELOPMENT)
|
|
|
|
#
|
|
|
|
|
2022-06-26 19:30:46 +03:00
|
|
|
DOCKER_DEV_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
|
2022-06-26 19:30:46 +03:00
|
|
|
DOCKER_DEV_MYSQL_PORT=3001
|
2022-06-01 19:11:44 +03:00
|
|
|
# Password for the Zeppelin database user
|
2022-06-26 19:30:46 +03:00
|
|
|
DOCKER_DEV_MYSQL_PASSWORD=
|
2022-06-01 19:11:44 +03:00
|
|
|
# Password for the MySQL root user
|
2022-06-26 19:30:46 +03:00
|
|
|
DOCKER_DEV_MYSQL_ROOT_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.
|
2022-06-26 14:34:54 +03:00
|
|
|
DOCKER_DEV_SSH_PORT=3002
|
|
|
|
DOCKER_DEV_SSH_PASSWORD=password
|
2022-06-01 19:11:44 +03:00
|
|
|
|
2022-06-26 23:15:36 +03:00
|
|
|
# If your user has a different UID than 1000, you might have to fill that in here to avoid permission issues
|
|
|
|
#DOCKER_DEV_UID=1000
|
|
|
|
|
2022-06-26 14:34:54 +03:00
|
|
|
#
|
2022-07-16 22:16:34 +03:00
|
|
|
# DOCKER (PRODUCTION)
|
2022-06-26 14:34:54 +03:00
|
|
|
#
|
|
|
|
|
2022-07-16 22:16:34 +03:00
|
|
|
DOCKER_PROD_DOMAIN=
|
|
|
|
DOCKER_PROD_WEB_PORT=443
|
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
|
2022-07-16 22:16:34 +03:00
|
|
|
DOCKER_PROD_MYSQL_PORT=3001
|
|
|
|
# Password for the Zeppelin database user
|
|
|
|
DOCKER_PROD_MYSQL_PASSWORD=
|
|
|
|
# Password for the MySQL root user
|
|
|
|
DOCKER_PROD_MYSQL_ROOT_PASSWORD=
|
2022-06-01 19:11:44 +03:00
|
|
|
|
|
|
|
# You only need to set these if you're running an external database.
|
|
|
|
# In a standard setup, the database is run in a docker container.
|
|
|
|
#DB_HOST=
|
|
|
|
#DB_USER=
|
|
|
|
#DB_PASSWORD=
|
|
|
|
#DB_DATABASE=
|