2015-03-14 09:40:40 +01:00
Event Man(ager)
===============
2015-03-22 11:08:23 +01:00
Your friendly manager of attendees at an event.
2015-03-14 09:40:40 +01:00
2015-04-05 23:54:14 +02:00
2015-04-07 23:59:35 +02:00
Development
===========
2015-03-14 18:11:17 +01:00
2015-03-22 11:07:08 +01:00
See the DEVELOPMENT.md file for more information about how to contribute.
2015-03-14 18:00:25 +01:00
2015-03-22 10:12:44 +01:00
Technological stack
===================
2015-03-14 18:00:25 +01:00
2015-04-05 23:54:14 +02:00
- [AngularJS ](https://angularjs.org/ ) (plus some third-party modules) for the webApp
- [Bootstrap ](http://getbootstrap.com/ ) (plus [Angular UI ](https://angular-ui.github.io/bootstrap/ )) for the eye-candy
2015-05-03 13:10:11 +02:00
- [Font Awesome ](https://fortawesome.github.io/Font-Awesome/ ) for even more cuteness
2015-03-22 10:12:44 +01:00
- [Tornado web ](http://www.tornadoweb.org/ ) as web server
- [MongoDB ](https://www.mongodb.org/ ) to store the data
2015-03-14 18:00:25 +01:00
2015-03-22 10:12:44 +01:00
The web part is incuded; you need to install Tornado, MongoDB and the pymongo module on your system (no configuration needed).
2015-05-03 13:10:11 +02:00
If you want to print labels using the _print\_label_ trigger, you may also need the pycups module.
2015-03-22 10:12:44 +01:00
Coding style and conventions
============================
It's enough to be consistent within the document you're editing.
I suggest four spaces instead of tabs for all the code: Python (**mandatory**), JavaScript, HTML and CSS.
2015-03-14 18:00:25 +01:00
2015-03-22 10:17:04 +01:00
Python code documented following the [Sphinx ](http://sphinx-doc.org/ ) syntax.
2015-03-14 18:00:25 +01:00
2015-03-15 11:56:05 +01:00
Install and run
===============
2016-04-19 22:13:47 +02:00
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.
2015-04-07 23:59:35 +02:00
2015-03-22 10:12:44 +01:00
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
2016-04-19 22:13:47 +02:00
sudo pip install tornado # version 4.2 or later
sudo pip install pymongo # version 3.2.2 or later
2015-05-16 20:10:10 +02:00
sudo pip install pycups # only needed if you want to print labels
2015-03-22 10:12:44 +01:00
git clone https://github.com/raspibo/eventman
cd eventman
./eventman_server.py --debug
2015-03-15 11:56:28 +01:00
2015-03-22 10:12:44 +01:00
Open browser and navigate to: http://localhost:5242/
2015-03-15 11:56:28 +01:00
2015-04-26 15:19:24 +02:00
If you store SSL key and certificate in the *ssl* directory (default names: eventman\_key.pem and eventman\_cert.pem), HTTPS will be used: https://localhost:5242/
2015-05-03 13:10:11 +02:00
Authentication
==============
2015-05-03 14:31:47 +02:00
By default, authentication is required; default username and password are *admin* and *eventman* . If you want to completely disable authentication, run the daemon with --authentication=off
2015-05-03 13:10:11 +02:00
2015-03-15 11:56:28 +01:00
2015-03-22 10:12:44 +01:00
License and copyright
=====================
2015-03-15 11:56:28 +01:00
2016-04-19 22:13:47 +02:00
Copyright 2015-2016 Davide Alberani < da @ erlug . linux . it > , RaspiBO < info @ raspibo . org >
2015-03-15 11:56:28 +01:00
2015-03-22 10:12:44 +01:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
2015-03-15 11:56:05 +01:00
2015-03-22 10:12:44 +01:00
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2015-03-15 11:56:28 +01:00