-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings
executable file
·58 lines (41 loc) · 1.38 KB
/
settings
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
46
47
48
49
50
51
52
53
54
55
56
57
58
# IP or hostname for the device running moonraker
export MOONRAKER_HOST="192.168.0.96"
# Usable ports
export MJPG_STREAMER_PORT=8080
export SSH_PORT=22
export HTTP_PORT=80
export FLUIDD_PORT=4408
export MAINSAIL_PORT=4409
# Port that the host is running moonraker on (usually 7125)
export MOONRAKER_PORT=7125
#export MOONRAKER_PORT=7625
# Is moonraker on http or https
export MOONRAKER_PROTO='http'
export MOONRAKER_TIMEOUT=5
# Timeout for other things (eg: checking port availability)
export GENERAL_TIMEOUT=5
export TEST_FLUIDD=true
export TEST_MAINSAIL=false
#export KLIPPER_UI="mainsail"
# This format is similar to the ISO format: 2024-08-03T12-05-58Z
# (output is given to gdate)
export TIMESTAMP_FORMAT="%FT%R:%S.%3NZ"
# <timestamp> <logtype> <data>
#export LOG_FORMAT="%21s| %8s: %s\n"
#export LOG_FORMAT="%b%(+%Y-%m-%dT%H-%M-%SZ)T%b| %b%8s%b: %b%s%b\n"
export LOG_FORMAT="%b%-25s%b %b%8s%b: %b%s%b\n"
# Output log level
# Acceptable values:
# 0 = None
# 1 = Errors only
# 2 = Errors and warnings
# 3 = Errors, warnings and info
# 4 = Debug, errors, warnings and info
export LOG_LEVEL=1
# Determines if the console should be colored
export CLICOLOR=true
# This will determine the seconds between the graphs/charts, are updated
export GRAPH_UPDATE_INTERVAL=1
export IMGCAT_BIN="/Users/jhyland/Documents/scripts/bash/imgcat"
# Relative to the moonraker-cli root
export TMP_DIR="./tmp"