===== Usage ===== Navigate to your project directory: Open your terminal or command prompt and use the cd command to navigate to the directory where your Flask application's main file (e.g., app.py or wsgi.py) is located. cd /path/to/your/flask_project Activate your virtual environment (recommended): If you are using a virtual environment, activate it before running your app. This ensures that your project's dependencies are isolated. # On Linux/macOS source venv/bin/activate # On Windows venv\Scripts\activate Run the flask appliocation, flask --app transit_notification run --debug