Colors recently added an Entity Relatioship Diagram which is designed on StarUML application.
create and enter the dir which u need to use
- git init
- git remote add origin https://github.com/KavachNetworks/Colors_HRMS_BE.git
- git pull origin master
- pip install virtualenv
- virtualenv env
- env/Scripts/activate
- pip install -r requirements.txt
- pip install django-rest-auth[with_social]
- cd colors
- python manage.py makemigrations
- python manage.py migrate --syncdb
- python manage.py createsuperuser
- python manage.py runserver
- git pull origin master
- git add .
- git commit -m "add the descp"
- git push origin master
- login : https://localhost:8000/rest-auth/login/
- logout : https://localhost:8000/rest-auth/logout/
- register : https://localhost:8000/rest-auth/registration/
- employee list : https://localhost:8000/employee/list/
- employee details : https://localhost:8000/employee/:employee_id/
- Delete employee : https://localhost:8000/employee/:employee_id/delete/
- Update employee : https://localhost:8000/employee/:employee_id/update/
- Add employee : https://localhost:8000/employee/create/