Your friendly manager of attendees at an event

Davide Alberani 86f5a109a7 #108: function to generate a UUID 8 年 前
angular_app 88fd3daf18 #108: avoid local add of already present person 8 年 前
data 956bc9cc07 Revert "mario edition" 9 年 前
ssl 956bc9cc07 Revert "mario edition" 9 年 前
static 86f5a109a7 #108: function to generate a UUID 8 年 前
templates 9591c68bf2 templates directory 9 年 前
.gitignore 956bc9cc07 Revert "mario edition" 9 年 前
DEVELOPMENT.md 1279f0d961 generate and store cookie_secret in the db 9 年 前
LICENSE.txt c377eb032b add Apache 2.0 license 9 年 前
README.md d5efd721d7 update documentation 8 年 前
backend.py 943aaa2bcb exclude some fields from conversion 9 年 前
eventman_server.py a2a0ede8d6 set default debug level to info 8 年 前
utils.py 46bc6fb9f7 hash with salt 9 年 前

README.md

Event Man(ager)

Your friendly manager of attendees at an event.

Development

See the DEVELOPMENT.md file for more information about how to contribute.

Technological stack

The web part is incuded; you need to install Tornado, MongoDB and the pymongo module on your system (no configuration needed). If you want to print labels using the print_label trigger, you may also need the pycups module.

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.

Python code documented following the Sphinx syntax.

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.

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 pycups # only needed if you want to print labels
git clone https://github.com/raspibo/eventman
cd eventman
./eventman_server.py --debug

Open browser and navigate to: http://localhost:5242/

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/

Authentication

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

License and copyright

Copyright 2015-2016 Davide Alberani da@erlug.linux.it, RaspiBO info@raspibo.org

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

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.