forked from doomwiki/doomwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1 KB
/
.env.example
File metadata and controls
29 lines (25 loc) · 1 KB
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
# This file must be parsed in a variety of contexts. For maximum compatibility:
# - Use # to start comments, but do not add trailing comments to definitions
# - Do not use special characters in comments
# - Do not use variable subsitutions as they will not be evaluated
# - Enclose any values with non-alphamuneric characters in double-quotes
# Doomwiki DB Connection
MYSQL_HOSTNAME="db"
MYSQL_DATABASE="doomwiki"
MYSQL_PORT="3306"
MYSQL_USERNAME="doomwiki"
MYSQL_PASSWORD="doomwiki"
MYSQL_ADMINUSERNAME="doomwiki"
MYSQL_ADMINPASSWORD="doomwiki"
# Misc Doomwiki Config
WIKI_SECRET_KEY="abcdefghijklmnopqrstuvwxyz0123456789abcdef"
WIKI_UB_UPLOAD_BLACKLIST="gd50495cab23a93d610020766ce28a8b9e4cf65" # Norton antivirus spam
WIKI_MONACO_PAYPAL_ID="X9YZ1234567890"
WIKI_GOOGLE_SITE_VERIFICATION="bHiExampleVerificationCode12345"
# Environmental Config
APP_ENV="dev_local"
APP_DOMAIN="localhost:8080"
# Compose. Establish a project name without spaces.
COMPOSE_PROJECT_NAME="base"
COMPOSE_WEB_PORT=8080
COMPOSE_MYSQL_PORT=33060