Skip to content

elinaldosoft/employee_manager

Repository files navigation

CircleCI Code Climate Test Coverage Deploy

Employee Manager

Administration app Online:

RESTful API:

curl -H "Content-Type: application/javascript" https://employee-manager-01.herokuapp.com/employee/
curl -XPOST -H "Content-Type: application/json" https://employee-manager-01.herokuapp.com/employee/add -d '{"name": "Dr. Robert Bruce Banner", "email": "hulk@marvel.com", "departament": "Pesquisa"}'
curl -XDELETE -H "Content-Type: application/json" https://employee-manager-01.herokuapp.com/employee/del -d '{"email": "hulk@marvel.com"}'

To running project

pip install -r requirements/dev-requirements.txt
python manage.py migrate
python manage.py createsuperuser <-- To create the user admin

To running tests

coverage run manage.py test

Details Project

  • Python 3.6
  • Django 1.10.5
  • CircleCI (Continuous Integration)