# Flask App A simple Flask application. ## Project Structure ``` . ├── .github/workflows/ # CI workflow ├── .gitignore ├── Procfile # For Heroku-style deployment ├── README.md ├── app.py # Application entry point └── requirements.txt # Python dependencies ``` ## Getting Started ### Prerequisites - Python 3.9+ ### Installation ```bash python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install -r requirements.txt ``` ### Run locally ```bash python app.py ``` The app will be available at `http://localhost:5000`. ## Endpoints | Method | Path | Description | |--------|-----------|----------------------| | GET | `/` | Returns a greeting | | GET | `/health` | Health check endpoint| ## Deployment This app includes a `Procfile` for deployment on platforms like Heroku: ``` web: gunicorn app:app ``` ## License MIT