-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
45 lines (40 loc) · 1.2 KB
/
.env.example
File metadata and controls
45 lines (40 loc) · 1.2 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# === FOLDER PATHS ===
DEADLOCK_DIR="<REPO>/game-data"
WORK_DIR="<REPO>/decompiler/decompiled-data"
OUTPUT_DIR="<REPO>/../deadlock-data/data/current" # uses deadlock-data repo, which enables diff checking
# OUTPUT_DIR="<REPO>/output-data" # local gitignored folder
# https://github.com/SteamRE/DepotDownloader/releases
# Required for non-english parsing
DEPOT_DOWNLOADER_CMD=~/Downloads/DepotDownloader-windows-x64
# https://github.com/deadlock-wiki/DeadlockEntityHelper
# Required for parsing the game map
ENTITY_HELPER_CMD="/~Downloads/DeadlockEntityHelper.exe"
# === DEADBOT STEPS ===
# Import game files from remote sources
IMPORT_FILES=true
ENGLISH_ONLY=true
# Decompile game files
DECOMPILE=true
# Force download and decompile files even if versions match
FORCE=true
# Fetch and parse changelogs
CHANGELOGS=false
# Parse decompiled game files
PARSE=true
# Parse the game map
PARSE_MAP=false
# Use bot to push changes to wiki
WIKI_UPLOAD=false
# Skip all uploads to the wiki
DRY_RUN=true
# Cleanup decompiled files
CLEANUP=false
# Use extensive logging
VERBOSE=true
# === CREDENTIALS ===
# Steam credentials
STEAM_USERNAME=user
STEAM_PASSWORD=pass
# deadlock.wiki credentials
BOT_WIKI_USER=user
BOT_WIKI_PASS=pass