Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffB42 <10328858+JeffB42@users.noreply.github.com>2020-12-12 22:43:15 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2020-12-12 22:43:15 +0300
commit2e8cc7e7fef1e3c8889adcbb2b0cb4bb7b754b3b (patch)
tree883d8446d5608cb2f682ae0313912e855391443d
parent30d4d02c98ae95b2786a08211f3cdcd9e5c446c7 (diff)
updated config file, added comments and set some of the default values
-rwxr-xr-x[-rw-r--r--]debian/local/octoscreen/config23
1 files changed, 17 insertions, 6 deletions
diff --git a/debian/local/octoscreen/config b/debian/local/octoscreen/config
index 9a52fc8..6c6c88c 100644..100755
--- a/debian/local/octoscreen/config
+++ b/debian/local/octoscreen/config
@@ -1,3 +1,5 @@
+# Required Configuration Settings
+
# Location of the OctoPrint's config.yaml file. If empty the file will
# be search at the `pi` home folder or the current user. Only used for locally
# installed OctoPrint servers.
@@ -13,12 +15,21 @@ OCTOPRINT_HOST=http://localhost:5000
# locally installed will be read from the config file.
OCTOPRINT_APIKEY=
-# Location of the application theme.
-OCTOSCREEN_STYLE_PATH=/opt/octoscreen/styles/z-bolt/
-# Resolution of the application, should be configured to the resolution of your
-# screen, for example 800x480.
-OCTOSCREEN_RESOLUTION=
+
+# Optional Configuration Settings
+
+# Location of file for logging (optional)
+OCTOSCREEN_LOG_LEVEL=Warn
# Location of file for logging (optional)
-OCTOSCREEN_LOG_FILE=
+OCTOSCREEN_LOG_FILE_PATH=logs/logfile.txt
+
+# Location of the application theme (optional)
+OCTOSCREEN_STYLE_PATH=/opt/octoscreen/styles/z-bolt/
+
+# Resolution of the application, and should be configured to the resolution of your
+# screen, for example 800x480.
+OCTOSCREEN_RESOLUTION=800x480
+# OCTOSCREEN_RESOLUTION is optional and defaults to 800x480 if missing
+# (defined in globalVars.go)