This webapp was developed in Django.
1.Clone the project git clone https://github.com/Nurtugang/imio_webapp.git cd imio_webapp
2.Install dependencies List of requirements there: req.txt pip install -r req.txt
3.Configure the database Also this webapp works with remote database(MYSQL SERVER), that's why you need to configure database first. You can do it there: imioproject/db_conf.py
4.Migrate python manage.py migrate
5.Admin-panel To have an access to Django admin-panel, after migration try to use this account: login:nur, password:nur If it doesn't work, just create new superuser: python manage.py createsuperuser
6.Run webapp python manage.py runserver