This is a Django CRUD app to manage the list of Products using REST API's.
To run this App :-
- Install the latest version of Python from https://www.python.org/downloads/.
- Create a virtual environment using
python -m venv env
- Activate the virtual environment using
env/scripts/activate
(for windows) andsource env/bin/activate
(for mac or linux) - Install requirements using
pip install -r requirements.txt
. - Run
python manage.py migrate
to migrate the tables into the database. - Finally run the project using
python manage.py runserver
. Your django app should start serving athttp://localhost:8000/
.