an oversimplified application to register attendees at a conference or event

Davide Alberani a756e2bcbe fixes #11: datepicker not covered by first group vor 7 Jahren
build cea1b8df81 webpack config vor 7 Jahren
config cea1b8df81 webpack config vor 7 Jahren
docs 31d71ce831 update docs vor 7 Jahren
src a756e2bcbe fixes #11: datepicker not covered by first group vor 7 Jahren
static 30673a1f68 initial commit vor 7 Jahren
tests 8ceaabf5b8 fixes #2: dialogs to show errors vor 7 Jahren
.babelrc 658948a02f add .pybabel vor 7 Jahren
.gitignore 658948a02f add .pybabel vor 7 Jahren
LICENSE.txt 890dad90db add license vor 7 Jahren
README.md 31cbf1e203 update docs vor 7 Jahren
ibt2.py e9ce35a379 code cleanup vor 7 Jahren
index.html d2aa6af62f code cleanup vor 7 Jahren
monco.py e9ce35a379 code cleanup vor 7 Jahren
package.json b610a0cb4f remove useless deps vor 7 Jahren
utils.py e9ce35a379 code cleanup vor 7 Jahren

README.md

ibt2 - I'll be there, 2

I'll be there, 2 is an oversimplified application to register attendees at a conference or event.

Basic workflow:

  • if you want (not mandatory), login with your user; to create a new user, simply choose a username and a password. Benefit of logging in: only you or admins can edit/delete your entries.
  • pick a date
  • choose the name of a new group
  • write your name
  • rinse and repeat

It's recommended to login with username '''admin''' and password '''ibt2''', go to your personal page and change the password, if you've just installed ibt2.

Install, run, develop and debug

To install it:

wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
sudo pip install tornado
sudo pip install pymongo
sudo pip install python-dateutil
git clone https://github.com/raspibo/ibt2
cd ibt2

Installation of Node.js and npm is left as an exercise to the reader.

To run it:

# install dependencies (one time only)
npm install

# build for production with minification (each time the sources changes)
npm run build

# run the Python webserver at localhost:3000
npm run server

Now you can point your browser to http://localhost:3000/ (that's the server for production)

If you want, you can share a link to a specific day, specifying it in the yyyy-mm-dd format, like: http://localhost:3000/#/day/2017-01-20

You can also run the server in https, putting in the ssl directory two files named ibt2_key.pem and ibt2_cert.pem

To run a development environment:

# install dependencies (one time only)
npm install

# run the Python web server using a testing database
npm run devserver &

# serve with hot reload at localhost:8080
npm run dev

# only when the devserver is running, you can also run the testsuite
python ./tests/ibt2_tests.py

Your browser will automatically open http://localhost:8080/ (that's the server for development)

Development

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

Technological stack

The web part is incuded; you need to install Node.js, Tornado, MongoDB and the pymongo module on your system (no configuration needed).

License and copyright

Copyright 2016-2017 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.