Commit 61cea198 authored by Guillaume Seguin's avatar Guillaume Seguin

Remove prontserve and update README accordingly (#464)

parent 5ffcbec2
...@@ -14,21 +14,16 @@ If you want the newest, shiniest features, you can run Printrun from source usin ...@@ -14,21 +14,16 @@ If you want the newest, shiniest features, you can run Printrun from source usin
A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/ A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
*Note:* Prontserve is not currently included in the windows binary.
## Mac OS X ## Mac OS X
A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/ A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
*Note:* Prontserve is not currently included in the OSX binary.
## Linux ## Linux
### Ubuntu/Debian ### Ubuntu/Debian
You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using
1. `sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-tornado python-setuptools python-libxml2 python-gobject avahi-daemon libavahi-compat-libdnssd1` 1. `sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-tornado python-setuptools python-libxml2 python-gobject avahi-daemon libavahi-compat-libdnssd1`
2. `pip install -r requirements_prontserve.txt`
### Fedora ### Fedora
...@@ -48,12 +43,6 @@ You can also run Printrun directly from source, if the packages are too old for ...@@ -48,12 +43,6 @@ You can also run Printrun directly from source, if the packages are too old for
Optional: `sudo yum install skeinforge simarrange` Optional: `sudo yum install skeinforge simarrange`
To enable Prontserve you need to also install something along the following
lines. Unforunately this has yet to be tested on a real Fedora system:
1. `sudo yum install avahi avahi-python`
2. `pip install -r requirements_prontserve.txt`
### Archlinux ### Archlinux
Packages are available in AUR. Just run Packages are available in AUR. Just run
...@@ -62,8 +51,6 @@ Packages are available in AUR. Just run ...@@ -62,8 +51,6 @@ Packages are available in AUR. Just run
and enjoy the `pronterface`, `pronsole`, ... commands directly. and enjoy the `pronterface`, `pronsole`, ... commands directly.
*Note:* Prontserve is not currently included in the arch package.
## RUNNING FROM SOURCE ## RUNNING FROM SOURCE
Run Printrun for source if you want to test out the latest features. Run Printrun for source if you want to test out the latest features.
...@@ -157,13 +144,6 @@ If you want to load stl files, you need to install a slicing program such as Sli ...@@ -157,13 +144,6 @@ If you want to load stl files, you need to install a slicing program such as Sli
See the Slic3r readme for more details on integration. See the Slic3r readme for more details on integration.
## USING PRONTSERVE
Prontserve runs a server for remotely monitoring and controlling your 3D printer over your network.
To start the server you can run `./prontserve.py` in the directory you git cloned printrun too. Once the server starts you can verify it's working by going to http://localhost:8888 in your web browser.
## USING PRONSOLE ## USING PRONSOLE
To use pronsole, you need: To use pronsole, you need:
......
#!/usr/bin/env python
# This file is part of the Printrun suite.
#
# Printrun is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Printrun is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
import argparse
from printrun.prontserve import Prontserve
if __name__ == "__main__":
# Args
# -------------------------------------------------
parser = argparse.ArgumentParser(
description='Runs a 3D printer server using the Construct Protocol'
)
parser.add_argument('--dry-run', default=False, action='store_true',
help='Does not connect to the 3D printer'
)
parser.add_argument('--loud', default=False, action='store_true',
help='Enables verbose printer output'
)
parser.add_argument('--heaptrace', default=False, action='store_true',
help='Enables a heap trace on exit (for developer use)'
)
args = parser.parse_args()
# Server Start Up
# -------------------------------------------------
prontserve = Prontserve(**vars(args)).start()
git+https://github.com/D1plo1d/tornado.git
git+https://github.com/D1plo1d/py-mdns.git
git+https://github.com/construct-protocol/construct_server.py
inflection>=0.2.0
mdns>=1.0.0
objgraph>=1.7.2
pybonjour>=1.1.1
pyserial==2.6
wsgiref==0.1.2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment