pip install virtualenv
$ virtualenv env
python3.6 -m venv env
source env/bin/activate
set the environmental variable. for development variable we have "dev" production we have "prod" staging we have "stage".
export APP_CONFIG_FILE=dev
Initial installation: make install
To run test: make tests
To run application: make run
To run all commands at once : make all
Open the following url on your browser to view swagger documentation
http://127.0.0.1:5000/dashboard
deactivate