Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 525 Bytes

README.md

File metadata and controls

28 lines (15 loc) · 525 Bytes

DjangoAPI

Simple API using Django

How to run the project

  1. Clone the project by running : git clone [email protected]:kibetamos/DjangoAPI.git

  2. Create a virtual env

     python -m venv env
    
  3. Activate it by running :

    source env/bin/activate
    
  4. Install the requirements.txt by running :

    pip install -r requirements.txt
    
  5. Make migrations :

    python manage.py makemigrations
    
  6. Start server by running :

    python manage.py runserver