Download the code
$ git clone
$ cd PortfolioWebManagerInstall modules via
VENV
$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txtSet Up Flask Environment
$ export FLASK_APP=run.py
$ export FLASK_ENV=developmentStart the app
$ flask runAt this point, the app runs at http://127.0.0.1:5000/.
Install modules via
VENV(windows)
$ virtualenv env
$ .\env\Scripts\activate
$ pip3 install -r requirements.txt
Set Up Flask Environment
$ # CMD
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"Start the app (DEVELOPMENT)
$ flask runAt this point, the app runs at http://127.0.0.1:5000/.
Start the app (PRODUCTION)
$ gunicorn --config gunicorn_config.py app:appAt this point, the app runs at http://127.0.0.1:5000/.