Skip to content

Latest commit

 

History

History
28 lines (27 loc) · 1016 Bytes

File metadata and controls

28 lines (27 loc) · 1016 Bytes

Employee Service API

About

This is a simple Employee service API that I created as an example for learning Django REST Framework.

Goal

The goal of this project is teach Django REST framework on novice programmers.

Features

With this API;

  • You can create and view a employee

Technology stack

Tools used during the development of this API are;

Requirements

  • Use Python 3.x.x+
  • Use Django 2.x.x+

Running the application

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