Autocommit from 2025-03-16 03:59:23
Klipper version: v0.12.0-382-ga18c74be0 Moonraker version: v0.9.3-3-gccfe32f Mainsail version: v2.13.2
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,5 +3,4 @@ KAMP
|
|||||||
mainsail.cfg
|
mainsail.cfg
|
||||||
moonraker_obico_macros.cfg
|
moonraker_obico_macros.cfg
|
||||||
timelapse.cfg
|
timelapse.cfg
|
||||||
.moonraker.conf.bkp
|
autocommit.sh
|
||||||
moonraker-sql.db
|
|
||||||
|
|||||||
116
.moonraker.conf.bkp
Normal file
116
.moonraker.conf.bkp
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
[server]
|
||||||
|
host = 0.0.0.0
|
||||||
|
port = 7125
|
||||||
|
klippy_uds_address = /home/biqu/printer_data/comms/klippy.sock
|
||||||
|
|
||||||
|
[authorization]
|
||||||
|
trusted_clients =
|
||||||
|
10.0.0.0/8
|
||||||
|
127.0.0.0/8
|
||||||
|
169.254.0.0/16
|
||||||
|
172.16.0.0/12
|
||||||
|
192.168.0.0/16
|
||||||
|
FE80::/10
|
||||||
|
::1/128
|
||||||
|
cors_domains =
|
||||||
|
*.lan
|
||||||
|
*.local
|
||||||
|
*://localhost
|
||||||
|
*://localhost:*
|
||||||
|
*://my.mainsail.xyz
|
||||||
|
*://app.fluidd.xyz
|
||||||
|
|
||||||
|
[octoprint_compat]
|
||||||
|
|
||||||
|
[history]
|
||||||
|
|
||||||
|
[file_manager]
|
||||||
|
enable_object_processing = True
|
||||||
|
|
||||||
|
[timelapse]
|
||||||
|
ffmpeg_binary_path = /usr/bin/ffmpeg
|
||||||
|
|
||||||
|
[update_manager]
|
||||||
|
channel = stable
|
||||||
|
refresh_interval = 168
|
||||||
|
|
||||||
|
[power MainPower]
|
||||||
|
type = klipper_device
|
||||||
|
object_name = output_pin ps_on
|
||||||
|
initial_state = on
|
||||||
|
|
||||||
|
[update_manager klipper_tmc_autotune]
|
||||||
|
type = git_repo
|
||||||
|
channel = dev
|
||||||
|
path = ~/klipper_tmc_autotune
|
||||||
|
origin = https://github.com/andrewmcgr/klipper_tmc_autotune.git
|
||||||
|
managed_services = klipper
|
||||||
|
primary_branch = main
|
||||||
|
install_script = install.sh
|
||||||
|
|
||||||
|
[update_manager timelapse]
|
||||||
|
type = git_repo
|
||||||
|
primary_branch = main
|
||||||
|
path = ~/moonraker-timelapse
|
||||||
|
origin = https://github.com/mainsail-crew/moonraker-timelapse.git
|
||||||
|
managed_services = klipper moonraker
|
||||||
|
|
||||||
|
[update_manager mainsail-config]
|
||||||
|
type = git_repo
|
||||||
|
primary_branch = master
|
||||||
|
path = ~/mainsail-config
|
||||||
|
origin = https://github.com/mainsail-crew/mainsail-config.git
|
||||||
|
managed_services = klipper
|
||||||
|
|
||||||
|
[update_manager mainsail]
|
||||||
|
type = web
|
||||||
|
channel = stable
|
||||||
|
repo = mainsail-crew/mainsail
|
||||||
|
path = ~/mainsail
|
||||||
|
|
||||||
|
[update_manager crowsnest]
|
||||||
|
type = git_repo
|
||||||
|
path = ~/crowsnest
|
||||||
|
origin = https://github.com/mainsail-crew/crowsnest.git
|
||||||
|
managed_services = crowsnest
|
||||||
|
install_script = tools/pkglist.sh
|
||||||
|
|
||||||
|
[update_manager sonar]
|
||||||
|
type = git_repo
|
||||||
|
path = ~/sonar
|
||||||
|
origin = https://github.com/mainsail-crew/sonar.git
|
||||||
|
primary_branch = main
|
||||||
|
managed_services = sonar
|
||||||
|
install_script = tools/install.sh
|
||||||
|
|
||||||
|
[update_manager katapult]
|
||||||
|
type = git_repo
|
||||||
|
origin = https://github.com/Arksine/katapult.git
|
||||||
|
path = ~/katapult
|
||||||
|
is_system_service = False
|
||||||
|
|
||||||
|
[update_manager KlipperScreen]
|
||||||
|
type = git_repo
|
||||||
|
path = ~/KlipperScreen
|
||||||
|
origin = https://github.com/KlipperScreen/KlipperScreen.git
|
||||||
|
virtualenv = ~/.KlipperScreen-env
|
||||||
|
requirements = scripts/KlipperScreen-requirements.txt
|
||||||
|
system_dependencies = scripts/system-dependencies.json
|
||||||
|
managed_services = KlipperScreen
|
||||||
|
|
||||||
|
[update_manager Klipper-Adaptive-Meshing-Purging]
|
||||||
|
type = git_repo
|
||||||
|
channel = dev
|
||||||
|
path = ~/Klipper-Adaptive-Meshing-Purging
|
||||||
|
origin = https://github.com/kyleisah/Klipper-Adaptive-Meshing-Purging.git
|
||||||
|
managed_services = klipper
|
||||||
|
primary_branch = main
|
||||||
|
|
||||||
|
[update_manager moonraker-telegram-bot]
|
||||||
|
install_script = scripts/install.sh
|
||||||
|
requirements = scripts/requirements.txt
|
||||||
|
env = /home/biqu/moonraker-telegram-bot-env/bin/python
|
||||||
|
origin = https://github.com/nlef/moonraker-telegram-bot.git
|
||||||
|
path = /home/biqu/moonraker-telegram-bot
|
||||||
|
type = git_repo
|
||||||
|
|
||||||
BIN
moonraker-sql.db
Normal file
BIN
moonraker-sql.db
Normal file
Binary file not shown.
Reference in New Issue
Block a user