This is a simple Employee service API that I created as an example for learning Django REST Framework.
The goal of this project is teach Django REST framework on novice programmers.
With this API;
- You can create and view a employee
Tools used during the development of this API are;
- Django - a python web framework
- Django REST Framework - a flexible toolkit to build web APIs
- SQLite - this is a database server
- Use Python 3.x.x+
- Use Django 2.x.x+
To run this application, clone the repository on your local machine and execute the following command.
$ cd drf_basic
$ virtualenv --python=python3 venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver