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