A basic HTTP server implementation using Flask.
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Run the server:
python app.pyThe server will start on http://localhost:3000
- GET /: Returns "Hello, World!"
- GET /health: Returns server health status