Advertisement
napland

Octoprint config.yaml

Jul 31st, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.76 KB | None | 0 0
  1. accessControl:
  2.   salt: REDACTED
  3. api:
  4.   key: REDACTED
  5. appearance:
  6.   color: black
  7. events:
  8.   enabled: true
  9.   subscriptions:
  10.   - command: echo "Print completed" | mail -s "Print {__filename} is complete!" manns41078@gmail.com
  11.     event: PrintDone
  12.     type: system
  13.   - command: echo "Timelapse available at {movie}" | mail -s "Timelapse available" manns41078@gmail.com
  14.     event: MovieDone
  15.     type: system
  16. plugins:
  17.   TemperatureFailsafe:
  18.     _config_version: 1
  19.     bed: 100
  20.     enabled: true
  21.     hotend: 300
  22.   announcements:
  23.     _config_version: 1
  24.     channels:
  25.       _blog:
  26.         read_until: 1529054100
  27.       _important:
  28.         read_until: 1521111600
  29.       _octopi:
  30.         read_until: 1527588900
  31.       _plugins:
  32.         read_until: 1531785600
  33.       _releases:
  34.         read_until: 1532527200
  35.     enabled_channels:
  36.    - _octopi
  37.     - _plugins
  38.     - _releases
  39.     - _blog
  40.   cura:
  41.     cura_engine: /usr/local/bin/cura_engine
  42.   discovery:
  43.     publicPort: 80
  44.     upnpUuid: 6afbd2a0-e778-4ec0-a153-f80f9123da45
  45.   softwareupdate:
  46.     _config_version: 6
  47.     check_providers:
  48.       emergencyaction: TemperatureFailsafe
  49.       touchui: touchui
  50. printerProfiles:
  51.   default: _default
  52. serial:
  53.   additionalBaudrates:
  54.  - 500000
  55.   - 1000000
  56.   autoconnect: true
  57.   baudrate: 115200
  58.   port: /dev/ttyUSB0
  59. server:
  60.   commands:
  61.     serverRestartCommand: sudo service octoprint restart
  62.     systemRestartCommand: sudo shutdown -r now
  63.     systemShutdownCommand: sudo shutdown -h now
  64.   firstRun: false
  65.   onlineCheck:
  66.     enabled: true
  67.   pluginBlacklist:
  68.     enabled: true
  69.   secretKey: REDACTED
  70.   seenWizards:
  71.     corewizard: 3
  72.     cura: null
  73. webcam:
  74.   ffmpeg: /usr/bin/avconv
  75.   snapshot: http://127.0.0.1:8080/?action=snapshot
  76.   stream: /webcam/?action=stream
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement