설명 없음

denzelselokela 607161d6b4 changes to app 1 개월 전
Procfile 420cada510 flask app 1 개월 전
README.md 420cada510 flask app 1 개월 전
app.py 607161d6b4 changes to app 1 개월 전
requirements.txt 420cada510 flask app 1 개월 전

README.md

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

python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -r requirements.txt

Run locally

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