From b50d6296e728159532fea2837dba7768bf37c8a2 Mon Sep 17 00:00:00 2001 From: Pietro Schirano Date: Thu, 30 May 2024 19:23:04 -0400 Subject: [PATCH] Reorganize Flask app files into flask_app folder --- README.md | 10 ++++++++++ app.py => flask_app/app.py | 0 requirements.txt => flask_app/requirements.txt | 0 {static => flask_app/static}/css/style.css | 0 {templates => flask_app/templates}/base.html | 0 {templates => flask_app/templates}/index.html | 0 6 files changed, 10 insertions(+) rename app.py => flask_app/app.py (100%) rename requirements.txt => flask_app/requirements.txt (100%) rename {static => flask_app/static}/css/style.css (100%) rename {templates => flask_app/templates}/base.html (100%) rename {templates => flask_app/templates}/index.html (100%) diff --git a/README.md b/README.md index 826a547..a0f4cbe 100644 --- a/README.md +++ b/README.md @@ -236,3 +236,13 @@ The Flask app includes the following UI features: - Basic styling for improved readability and user experience. This integration aims to make the Maestro framework more accessible and user-friendly, providing an intuitive way for users to leverage the power of AI-assisted task breakdown and execution. + +### Updated Instructions for Running the Flask App + +To run the Flask app with the updated file structure, follow these steps: + +1. Navigate to the `flask_app` directory. +2. Execute `python app.py` to start the Flask server. +3. Access the web interface by navigating to `http://localhost:5000/` in your web browser. + +This update ensures that all Flask app-related files are neatly organized within the `flask_app` folder, simplifying the project structure and making it easier to manage. diff --git a/app.py b/flask_app/app.py similarity index 100% rename from app.py rename to flask_app/app.py diff --git a/requirements.txt b/flask_app/requirements.txt similarity index 100% rename from requirements.txt rename to flask_app/requirements.txt diff --git a/static/css/style.css b/flask_app/static/css/style.css similarity index 100% rename from static/css/style.css rename to flask_app/static/css/style.css diff --git a/templates/base.html b/flask_app/templates/base.html similarity index 100% rename from templates/base.html rename to flask_app/templates/base.html diff --git a/templates/index.html b/flask_app/templates/index.html similarity index 100% rename from templates/index.html rename to flask_app/templates/index.html