Skip to content

API designed for an eCommerce web application using Python and Flask REST framework.

Notifications You must be signed in to change notification settings

vinitshah24/eCommerce-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rest API Using Flask

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Setting up virualenv and installing requirements

Create virtual environment for the application:

virtualenv app

Source scripts to activate the virtualenv:

source Scripts/activate

Install requirements for the project:

pip install -r requirements.txt

Setting database in MySQL:

CREATE DATABASE flask_rest_db;

Creating required tables:

python manage.py db init
python manage.py db migrate
python manage.py db upgrade

Runing the application:

python run.py

Releases

No releases published

Packages

No packages published