3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 04:25:01 +00:00

Consolidate .env files. More work on dev containers.

This commit is contained in:
Dragory 2022-06-26 14:34:54 +03:00
parent 2a959f354c
commit 3773d659cc
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
17 changed files with 137 additions and 106 deletions

View file

@ -1,4 +1,4 @@
ENCRYPTION_KEY=32_character_encryption_key
KEY=32_character_encryption_key
CLIENT_ID=
CLIENT_SECRET=
@ -7,26 +7,37 @@ BOT_TOKEN=
OAUTH_CALLBACK_URL=
DASHBOARD_DOMAIN=
API_DOMAIN=
PORT=443
API_PORT=3000
#
# DOCKER (DEVELOPMENT)
#
DOCKER_WEB_PORT=443
# The MySQL database running in the container is exposed to the host on this port,
# allowing access with database tools such as DBeaver
MYSQL_PORT=3001
DOCKER_MYSQL_PORT=3001
# Password for the Zeppelin database user
MYSQL_PASSWORD=
DOCKER_MYSQL_PASSWORD=
# Password for the MySQL root user
MYSQL_ROOT_PASSWORD=
DOCKER_MYSQL_ROOT_PASSWORD=
# 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=3002
DOCKER_DEV_SSH_PORT=3002
DOCKER_DEV_SSH_PASSWORD=password
# Only required if relevant feature is used
#PHISHERMAN_API_KEY=
#
# PRODUCTION
#
# In production, the newest code is pulled from a repository
# Specify that repository URL here
PRODUCTION_REPOSITORY=https://github.com/ZeppelinBot/Zeppelin.git
#PRODUCTION_REPOSITORY=https://github.com/ZeppelinBot/Zeppelin.git
# 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.