EvaP (a successor to the infamous EvaJ) is a course evaluation system used internally at Hasso Plattner Institute.
For the documentation, please look into the docs subdirectory or the generated documentation at ReadTheDocs: https://evap.readthedocs.org.
The vagrant setup and a quick manual install are shown here. For more detailed instructions (including production deployment) see http://evap.readthedocs.org/en/latest/installation.html.
Checkout EvaP and its submodules:
git clone --recurse-submodules git@github.com:fsr-itse/EvaP.git
After installing Vagrant, run in your EvaP root directory:
vagrant up
create yourself an admin account:
vagrant ssh cd /vagrant python manage.py createsuperuser
and open your browser:
http://localhost:8000/
simply install the requirements:
pip install -r requirements.txt
run the database initialization and migrations:
python manage.py syncdb python manage.py migrate
make the translations work:
python manage.py compilemessages
create yourself an admin account:
python manage.py createsuperuser
start the development server:
python evap/manage.py runserver
and open your browser:
http://localhost:8000/
More detailed instructions (also covering production deployment) can be found at http://evap.readthedocs.org/en/latest/installation.html.
The Vagrant VM automatically loads test data from a fixture on it's creation. If you want to load this data in your manual installation, run the following commands (Note: This will remove all data previously stored in the database):
python manage.py flush --no-initial-data python manage.py loaddata test_data.json
We have a mailinglist evap-dev@lists.myhpi.de
You can add yourself to the list at http://lists.myhpi.de/HQowKfvd70oVOTPEWG2UhB0OO0rfo8Z
- Michael Grünewald
- Stefan Richter
- Matthias Jacob
- Arvid Heise
- Nicolas Fricke
- Stefanie Reinicke
- Thomas Schulz
- Matthias Kohnen
- Johannes Linke
- Johannes Wolf
- others
The software is licensed under the MIT license. The source code includes other components in whole or in part; namely jQuery, jQuery UI, jQuery UI Multiselect and jQuery Formset. These components are used under the MIT resp. BSD licenses. It also uses symbols of the Silk icon set from famfamfam.com, which is licensed under a Creative Commons Attribution 2.5 License.
The source repository may include logos, names or other trademarks of the Hasso Plattner Institute or other entities; potential usage restrictions for these elements still apply and are not touched by the software license.
EvaP - Evaluation Platform Copyright (C) 2011-2014 by Michael Grünewald, Stefan Richter, Johannes Linke and Johannes Wolf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.