-
-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jochen Scheib
committed
Jul 21, 2023
1 parent
26975e0
commit f74ee43
Showing
5 changed files
with
67 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ start_moonraker | |
.pdm.toml | ||
build | ||
dist | ||
.pdm-build |
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,20 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Current File", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "moonraker/moonraker.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": [ | ||
"-c", "moonraker.conf", | ||
"-a", "/tmp/moonraker.sock" | ||
] | ||
} | ||
] | ||
} |
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,29 @@ | ||
# Sample Moonraker Configuration File | ||
# | ||
# !!! Moonraker does not load this file. See configuration.md !!! | ||
# !!! for details on path to Moonraker's configuration. !!! | ||
# | ||
|
||
[server] | ||
# Bind server defaults of 0.0.0.0, port 7125 | ||
enable_debug_logging: False | ||
|
||
[authorization] | ||
enabled: True | ||
trusted_clients: | ||
# Enter your client IP here or range here | ||
192.168.1.0/24 | ||
cors_domains: | ||
# Allow CORS requests for Fluidd | ||
http://app.fluidd.xyz | ||
|
||
# Enable OctoPrint compatibility for Slicer uploads | ||
# Supports Cura, Slic3r, and Slic3r dervivatives | ||
# (PrusaSlicer, SuperSlicer) | ||
[octoprint_compat] | ||
# Default webcam config values: | ||
# flip_h = false | ||
# flip_v = false | ||
# rotate_90 = false | ||
# stream_url = /webcam/?action=stream | ||
# webcam_enabled = true |
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