Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 1.01 KB

File metadata and controls

43 lines (27 loc) · 1.01 KB

FlaskProject

Flask app using modular blueprints.

The structure is a combination of Large app how to and overholt.

Features:

This web app requires these programs:

  • Python 3.9.16
  • pip
  • python3.10-venv

1. First time environment initialization

$ python3 -m venv venv
$ source venv/bin/activate

2. Activate environment

$ source venv/bin/activate

3. Install all required Python libraries

$ pip install -r requirements.txt

4. Initialize database

$ python seed.py

5. Run the Flask project

$ python run.py