34 lines
1.5 KiB
Bash
34 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# # Moonraker - API Web Server for Klipper
|
|
#
|
|
# Moonraker is a Python 3 based web server that exposes APIs with which
|
|
# client applications may use to interact with the 3D printing firmware
|
|
# [Klipper](https://github.com/KevinOConnor/klipper). Communication between
|
|
# the Klippy host and Moonraker is done over a Unix Domain Socket. Tornado
|
|
# is used to provide Moonraker's server functionality.
|
|
#
|
|
# Documentation for users and developers can be found on
|
|
# [Read the Docs](https://moonraker.readthedocs.io/en/latest/).
|
|
#
|
|
# ### Clients
|
|
#
|
|
# Note that Moonraker does not come bundled with a client, you will need to
|
|
# install one. The following clients are currently available:
|
|
#
|
|
# - [Mainsail](https://github.com/mainsail-crew/mainsail) by [Mainsail-Crew](https://github.com/mainsail-crew)
|
|
# - [Fluidd](https://github.com/fluidd-core/fluidd) by Cadriel
|
|
# - [KlipperScreen](https://github.com/jordanruthe/KlipperScreen) by jordanruthe
|
|
# - [mooncord](https://github.com/eliteSchwein/mooncord) by eliteSchwein
|
|
#
|
|
# ### Raspberry Pi Images
|
|
#
|
|
# Moonraker is available pre-installed with the following Raspberry Pi images:
|
|
#
|
|
# - [MainsailOS](https://github.com/mainsail-crew/MainsailOS) by [Mainsail-Crew](https://github.com/mainsail-crew)
|
|
# - Includes Klipper, Moonraker, and Mainsail
|
|
# - [FluiddPi](https://github.com/fluidd-core/FluiddPi) by Cadriel
|
|
# - Includes Klipper, Moonraker, and Fluidd
|
|
|
|
# [Moonraker install](https://moonraker.readthedocs.io/en/latest/installation/)
|