11 lines
405 B
Plaintext
11 lines
405 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Add-on: 3dprinter-octoprint
|
|
# Runs OctoPrint
|
|
# ==============================================================================
|
|
|
|
bashio::log.info "Starting OctoPrint..."
|
|
|
|
## Run your program
|
|
exec octoprint serve --iknowwhatimdoing --host 127.0.0.1 --port 5000 --basedir /data/config/octoprint
|