git clone https://github.com/ntt261298/Catalog-Restful-Flask-Api.git
virtualenv env
source env/bin/activate
pip install -r requirements.txt
export ENV=development # for dev environment (default)
export ENV=production # for pro environment
export ENV=testing # for test environment
python run.py
python manage.py cov # test with coverage
python manage.py test # test without coverage
python manage.py db init
python manage.py db migrate
python manage.py db upgrade