Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/markwal/octoprint-polarcloud

OctoPrint plugin that connects OctoPrint to the Polar3D cloud. You easily monitor your printer from outside your LAN without arcane setup of port forwarding, etc. Plus, take advantage of the rapidly evolving Polar Cloud capabilities and UI.
https://github.com/markwal/octoprint-polarcloud

Last synced: 2 months ago
JSON representation

OctoPrint plugin that connects OctoPrint to the Polar3D cloud. You easily monitor your printer from outside your LAN without arcane setup of port forwarding, etc. Plus, take advantage of the rapidly evolving Polar Cloud capabilities and UI.

Awesome Lists containing this project

README

        

# OctoPrint-PolorCloud Development Notes

## Install to run from source

Clone this repo onto your raspberry pi. From the command line:

```
git clone https://github.com/markwal/OctoPrint-PolarCloud
```

Activate the octoprint python environment. On my octopi, it's like this:

```
source ~/oprint/bin/activate
```

Then use pip to install this plugin in editable mode:

```
cd ~/OctoPrint-PolarCloud
pip install -e .
```

Restart octoprint to pick up the changes:

```
sudo service octoprint restart
```

## Making a new release

* Pull all changes to your local copy
* Restart the octoprint server
* Test
* Change the `plugin_version` number in setup.py
* Commit and push that change
* Make a new release in github (click "Releases", then "Draft new release"),
make sure that the version number matches the one you pushed.