A simple tool for on- and ofboarding in a mid sized organisation.
Go to file
Benni Bärmann 24df9e4a93 bugfix in mail sending 2021-08-30 14:24:08 +02:00
eva removed debug settings 2021-05-17 16:34:58 +02:00
evapp bugfix in mail sending 2021-08-30 14:24:08 +02:00
.gitignore
LICENSE
README.md Merge branch 'simpleauth' 2021-05-06 16:19:58 +02:00
TODO bugfix in mail sending 2021-08-30 14:24:08 +02:00
manage.py

README.md

eva

A simple tool for on- and offboarding people in a mid sized organisation.

"EVA" is an german acronym for "Eintritt, Veränderung, Austritt", meaning "Onboarding, Change, Offboarding"

development

  • set up a virtual environment with virtualenvwrapper or some other environment managing tool

  • use this environment and do

    pip install django django-multiselectfield django-formtools django-allauth

  • clone this repository

  • initialise your database with

    python manage.py migrate

  • start your development server with

    python manage.py runserver

production

  • you can use gunicorn as server for example instead of the django development server.

  • we use whitenoise for serving static files

  • we still use the development SQLITE database from django

do the following in the project main directory:

ln -sr eva/settings_production.py eva/settings.py

edit /secrets.json to contain something similar to

{ "SECRET_KEY": "THIS IS ANOTHER SECRET!" }

run the following commands:

python3 manage.py migrate python3 manage.py collectstatic

server starts with

nohup gunicorn --forwarded-allow-ips="*" -b '0:8000' eva.wsgi 2&> logfile &