From 032afcf2291674898ff68e8f935c7048ed613427 Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Sun, 2 Apr 2017 14:40:34 +0200 Subject: [PATCH] update doc --- README.md | 13 +++++++------ docs/DEVELOPMENT.md | 2 -- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0df73bf..944aed1 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ See the *docs/DEVELOPMENT.md* file for more information about how to contribute. Technological stack =================== +- [Python 3](https://www.python.org/) for the backend - [AngularJS](https://angularjs.org/) (plus some third-party modules) for the webApp - [Angular Easy form Generator](https://mackentoch.github.io/easyFormGenerator/) for the custom forms - [Bootstrap](http://getbootstrap.com/) (plus [Angular UI](https://angular-ui.github.io/bootstrap/)) for the eye-candy @@ -45,14 +46,14 @@ If you want to print labels using the _print\_label_ trigger, you may also need Install and run =============== -Be sure to have a running MongoDB server, locally. If you want to install the dependencies only locally to the current user, you can append the *--user* argument to the *pip* calls. Please also install the *python-dev* package, before running the following commands. +Be sure to have a running MongoDB server, locally. If you want to install the dependencies only locally to the current user, you can append the *--user* argument to the *pip* calls. Please also install the *python3-dev* package, before running the following commands. wget https://bootstrap.pypa.io/get-pip.py - sudo python get-pip.py - sudo pip install tornado # version 4.2 or later - sudo pip install pymongo # version 3.2.2 or later - sudo pip install python-dateutil - sudo pip install pycups # only needed if you want to print labels + sudo python3 get-pip.py + sudo pip3 install tornado # version 4.2 or later + sudo pip3 install pymongo # version 3.2.2 or later + sudo pip3 install python-dateutil + sudo pip3 install pycups # only needed if you want to print labels git clone https://github.com/raspibo/eventman cd eventman ./eventman_server.py --debug diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 3fc6e62..3bf2155 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -1,8 +1,6 @@ Development =========== -As of July 2016, EventMan(ager) is under heavy refactoring. For a list of main changes that will be introduced, see https://github.com/raspibo/eventman/issues - Every contribution, in form of code or ideas, is welcome.