Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 566 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 566 Bytes

CarSales API

This is an API for Car Sales app created with Django Rest Framework.

The entire application is contained within the car_sales folder.

Setup python virtual environment

py -m venv venv
cd ./venv/Scripts/
./activate

Install requirements

pip install -r requirements.txt

Make migrations

py manage.py makemigrations
py manage.py migrate

Run the app

py manage.py runserver