Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 552 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 552 Bytes

restful-api-flask

This is a RESTFUL API project which i created to improve my skills in RESTFUL API.

Install guide

Clone the repo
$ git clone https://github.com/Kburak/restful-api-flask.git
$ cd restful-api-flask
Create the virtualenv and activate it
$ python3 -m venv venv
$ . venv/bin/activate
Or on Windows cmd::
$ py -3 -m venv venv
$ venv\Scripts\activate.bat
Install dependencies
$ pip install -r requirements.txt
Run the app
$ python app.py