Local Development
python3 -m venv venv- Creates the virtual enviornment.source venv/bin/activate- Activates the virtual enviornment.pip install -r requirements.txt- Installs dependencies for the programpython run.py- Runs a local flask server.
This script runs the application defined in the app module from the src
package.
The script checks if it is being run as the main module and, if so, starts the application server.
Modules:
| Name | Description |
|---|---|
src.app |
The application instance to be run. |
Usage
Run this script directly to start the application server.