Contains a working example of a package Flask App
(This assumes you have Python installed)
- Download or Clone this repository.
- Open terminal (Linux) / powershell (Windows) and cd to the directory of the project.
# Linux
cd /path/to/FAS-3-Application-Factory
# Windows
cd C:\path\to\FAS-3-Application-Factory
Create a virtual environment and activate it.
python3 -m venv venvsource venv/bin/activateInstall the requirements.
pip install -r requirements.txtrun
flask runor
python3 run.pyCreate a virtual environment and activate it.
python -m venv venv.\venv\Scripts\activateInstall the requirements.
pip install -r requirements.txtrun
flask run --debugor
python run.py