First, install Python 3.x.
Set up a virtual environment using the following command:
python -m venv venv
Then, activate the virtual environment.
On windows:
.\venv\Scripts\activate
On macOS and Linux:
source env/bin/activate
If you want to switch projects or otherwise leave your virtual environment, simply run:
deactivate
Project is built using Python web framework - Flask.
Flask and all the other dependency modules can be installed from the commandline using pip
manager:
pip install -r dev-requirements.txt
Run the following command:
flask run