(FAS, Flask App Structure)
Contains a working example of a Flask App setup using split modules.
CheeseCake87 (David Carmichael)
See: LICENSE
Viewing the source code of this project acknowledges that you have read and understood the license.
(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-2-Split-Modules
# Windows
cd C:\path\to\FAS-2-Split-Modules
Create a virtual environment and activate it.
python3 -m venv venv
source venv/bin/activate
Install the requirements.
pip install -r requirements.txt
run
flask run
or
python3 app.py
Create a virtual environment and activate it.
python -m venv venv
.\venv\Scripts\activate
Install the requirements.
pip install -r requirements.txt
run
flask run
or
python app.py