Skip to content

Commit

Permalink
Reworked config system
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelherd committed May 30, 2022
1 parent 0f6c9a5 commit 8ccf106
Show file tree
Hide file tree
Showing 24 changed files with 9,143 additions and 7,958 deletions.
6 changes: 2 additions & 4 deletions bin/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ settings:
# https://github.com/marcelherd/TekkenLearningPlatform/wiki/OBS-Studio-Setup
obsWebsocketPassword: "change-me"

# Where to save video recordings.
# Where you instructed OBS to save your video recordings. This must be
# configured if "enableVideoUpload" and "enableCleanup" are enabled.
# It is recommended to configure "flv" as "Recording Format"
# in OBS Studio if you plan on uploading them to YouTube automatically.
recordingPath: "C:/temp/TekkenLearningPlatform"
Expand Down Expand Up @@ -91,6 +92,3 @@ settings:

# How often the game state is updated (interval in ms).
tickInterval: 1

# Uncomment to enable database debug logging.
# DEBUG: "prisma*"
3 changes: 0 additions & 3 deletions bin/start.bat

This file was deleted.

3 changes: 3 additions & 0 deletions bin/start_all.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off
cmd /C "set "NODE_ENV=production" && start tlp-recorder.exe"
cmd /C "set "NODE_ENV=production" && start tlp-webapp.exe"
2 changes: 2 additions & 0 deletions bin/start_recorder.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
cmd /C "set "NODE_ENV=production" && start tlp-recorder.exe"
2 changes: 2 additions & 0 deletions bin/start_webapp.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
cmd /C "set "NODE_ENV=production" && start tlp-webapp.exe"
Loading

0 comments on commit 8ccf106

Please sign in to comment.