This project is implemented using Flask and is a REST API for a store. The endpoints can be used to add items to, fetch item(s) from, edit items in, and delete items from a store. Also names of stores can be added and retrieved from the database using the assigned endpoints.
-
Ensure you have Python installed on your PC
-
Run the following command in the terminal to create a virtual environment
python -m venv venv
- Run the following command in the terminal to activate your virtual environment
source venv/Scripts/activate
- Run the following command in the terminal to install the dependencies in the requirements.txt file
pip install -r requirements.txt
-
Run
python app.py
to start the server. -
Test the endpoints using Postman
This project is hosted on heroku