-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from ekky-llc/raid-and-profile-manager
Milestone: Enhance Fika Support and Refactor Code for Better Performance and Debugging
- Loading branch information
Showing
46 changed files
with
1,850 additions
and
973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 4, | ||
"semi": false, | ||
"singleQuote": true, | ||
"printWidth": 250 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
{ | ||
"do_not_delete_1" : "[👇🏾 DO NOT MODIFY]", | ||
"settings_schema_version" : 1, | ||
"do_not_delete_2" : "[☝🏾 DO NOT MODIFY]", | ||
"do_not_delete_1": "[👇🏾 DO NOT MODIFY]", | ||
"settings_schema_version": 2, | ||
"do_not_delete_2": "[☝🏾 DO NOT MODIFY]", | ||
|
||
|
||
"00_comment" : "[SERVER] [DEFAULT: 7828] Changes Default Web Socket port, modify this if port is reserved in your environment.", | ||
"web_socket_port" : 7828, | ||
"01_comment" : "[SERVER] [DEFAULT: 7829] Changes Default HTTP port, modify this if port is reserved in your environment.", | ||
"comment__enableDebugLogs": "[DEBUG] [DEFAULT: true] Enable debug logging.", | ||
"enableDebugLogs": true, | ||
"comment__enableLogFiles": "[DEBUG] [DEFAULT: true] If enabled, dumps normal logs `/logs` meant for support/debugging purposes.", | ||
"enableLogFiles": true, | ||
"comment__enableVerboseLogFiles": "[DEBUG] [DEFAULT: true] If enabled, dumps all logs `/logs` meant for support/debugging purposes.", | ||
"enableVerboseLogFiles": true, | ||
"comment__maximumLogFiles": "[DEBUG] [DEFAULT: 10] If 'LogFiles' are enabled, this is the maximum number of logs allowed to be stored; oldest logs will be deleted.", | ||
"maximumLogFiles": 10, | ||
|
||
|
||
"comment__web_socket_port": "[SERVER] [DEFAULT: 7828] Changes Default Web Socket port; modify this if the port is reserved in your environment.", | ||
"web_socket_port": 7828, | ||
"comment__web_client_port": "[SERVER] [DEFAULT: 7829] Changes Default HTTP port; modify this if the port is reserved in your environment.", | ||
"web_client_port": 7829, | ||
|
||
|
||
"02_comment" : "[TELEMETRY] [DEFAULT: true] Contribute end of raid statistics to the 'https://raid-review.online' server, more info here: https://github.com/ekky-llc/spt-raid-review/blob/main/TELEMETRY.md.", | ||
"telemetry" : true, | ||
|
||
|
||
"03_comment": "[AUTO-DELETE] [DEFAULT: true] Automatically delete old raids to save disk space, runs on start up.", | ||
"autoDelete" : true, | ||
"04_comment": "[AUTO-DELETE] [DEFAULT: true] Automatically delete unfinished raids (due to crash, alt+f4 etc), runs on start up.", | ||
"autoDeleteUnfinishedRaids" : true, | ||
"05_comment": "[AUTO-DELETE] [DEFAULT: false] If this is 'true', 'autoDelete' functions will run once an hour, helpful if you don't generally restart the SPT Server.", | ||
"autoDeleteCronJob" : false, | ||
"06_comment": "[AUTO-DELETE] [DEFAULT: 30] If this is 'true', this is the maximum number of raids allowed to be stored, oldest raid will be deleted.", | ||
"autoDeleteLimit" : 30, | ||
|
||
|
||
"07_comment": "[AUTH] [DEFAULT: false] Enable Basic Auth, use this setting if you'd like to password protect web server.", | ||
"basic_auth" : false, | ||
"08_comment" : "[AUTH] If Basic Auth Enabled, use this to register username/passwords.", | ||
"users" : { | ||
"admin" : "password", | ||
"guest" : "password" | ||
}, | ||
"09_comment" : "[AUTH] If Basic Auth Enabled, use this to mark user as an admin.", | ||
"admin" : { | ||
"admin" : true, | ||
"guest" : false | ||
} | ||
"comment__telemetry": "[TELEMETRY] [DEFAULT: true] Contribute end of raid statistics to the 'https://raid-review.online' server. More info here: https://github.com/ekky-llc/spt-raid-review/blob/main/TELEMETRY.md.", | ||
"telemetry": true, | ||
|
||
|
||
"comment__autoDelete": "[AUTO-DELETE] [DEFAULT: true] Automatically delete old raids to save disk space; runs on startup.", | ||
"autoDelete": true, | ||
"comment__autoDeleteUnfinishedRaids": "[AUTO-DELETE] [DEFAULT: true] Automatically delete unfinished raids (due to crash, alt+f4, etc.); runs on startup.", | ||
"autoDeleteUnfinishedRaids": true, | ||
"comment__autoDeleteCronJob": "[AUTO-DELETE] [DEFAULT: false] If true, 'autoDelete' functions will run once an hour; helpful if you don't generally restart the SPT Server.", | ||
"autoDeleteCronJob": false, | ||
"comment__autoDeleteLimit": "[AUTO-DELETE] [DEFAULT: 30] Maximum number of raids allowed to be stored; oldest raid will be deleted.", | ||
"autoDeleteLimit": 30, | ||
|
||
|
||
"comment__authentication": "[AUTH] [DEFAULT: true] Enable Basic Authentication; use this setting if you'd like to password-protect the web server.", | ||
"authentication": true, | ||
"comment__authentication_extra_info": "The credentials is the username of the profile you use in SPT." | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
Oops, something went wrong.