Demo Django Application using Django REST Framework
- To text create a virtualenv and install the requirements
pip install -r requirements.txt
- After that create the SQLite DB using:
python manage.py migrate
- Create a demo admin user:
python manage.py createsuperuser
- Run the server:
python manage.py runserver
The admin page will be running on http://localhost:8000/admin/ To see the list of employess, access http://localhost:8000/employee/
To get a specific employee, access http://localhost:8000/employee/%email%/ ex: http://localhost:8000/employee/[email protected]/
* This demo was tested with Python 3.6.1