32 lines
695 B
Plaintext
32 lines
695 B
Plaintext
# Example .env file
|
|
DOTENV_MYSQL_ROOT_PASSWORD_OLD="rootp"
|
|
DOTENV_MYSQL_ROOT_PASSWORD="rootp"
|
|
|
|
DOTENV_MYSQL_GITEA_PASSWORD="giteap"
|
|
DOTENV_MYSQL_FLASK_PASSWORD="flaskp"
|
|
|
|
GITEA_MAIL_FROM="git@aaa"
|
|
|
|
# Build ARG GPG_PP. May still need to be empty to avoid breakage.
|
|
BUILD_GPG_PP=
|
|
|
|
# Tor:
|
|
# true/false:
|
|
USE_TOR=false
|
|
|
|
# Backend:
|
|
FLASK_SECRET_KEY="flaskkey"
|
|
# Inconsequential token: minimal inconvenience if exposed
|
|
FLASK_TOKEN_I="dti"
|
|
# Consequential token: protect
|
|
FLASK_TOKEN_C="dtc"
|
|
# true/false:
|
|
ALLOW_REGISTRATION=true
|
|
FLASK_MAIL_FROM="git@aaa"
|
|
# admin email must be valid send from with mail subsystem
|
|
FLASK_ADMIN_EMAIL="git@aaa"
|
|
FLASK_JWT_PHRASE="jwtphrase"
|
|
FLASK_REAL_HOSTNAME="localhost"
|
|
|
|
|