- Python 3
- Virtualenv
The virtual environment and the application dependencies can be configured using the following:
virtualenv -p python3 venv
source ./venv/bin/activate
pip install -r requirements.txt
virtualenv venv
./venv/Scripts/activate
pip install -r requirements.txt
A Flask developer server can be started by running this command:
python ./src/qac_devops_flask_example/__init__.py