-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
# RestFul API for To-Do-List | ||
A RestFul API for To-Do-List created using Flask and Flask-RestPlus. It features a Swagger UI for debugging. | ||
|
||
# Installation | ||
1) Install python3 | ||
2) Install pip for python3 | ||
3) Install virtualenv | ||
`pip install virtualenv` or `pip3 install virtualenv` | ||
4) Create virtual environment and cd into it | ||
`virtualenv to-do-restful --python python3 && cd to-do-restful` | ||
5) Clone git repository into folder `git clone <url>` | ||
6) Install requirements `pip install -r requirements.txt` or `pip3 install -r requirements.txt` | ||
7) Run using `python app.py` | ||
9) Open `http://localhost:5000/` |