A RestFul API for To-Do-List created using Flask and Flask-RestPlus. It features a Swagger UI for debugging.
- Install python3
- Install pip for python3
- Install virtualenv
pip install virtualenv
orpip3 install virtualenv
- Create virtual environment and cd into it
virtualenv to-do-restful --python python3 && cd to-do-restful
- Clone git repository into folder
git clone <url>
- Install requirements
pip install -r requirements.txt
orpip3 install -r requirements.txt
- Run using
python app.py
- Open
http://localhost:5000/