Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 557 Bytes

File metadata and controls

29 lines (22 loc) · 557 Bytes

Hello World HTTP Server

A simple HTTP server that responds with "Hello, World!" using Flask and Pipenv.

Setup Instructions

  1. Install Pipenv if you haven't already:

    pip install pipenv
  2. Clone this repository and navigate to the project directory:

    cd hello_world
  3. Install dependencies using Pipenv:

    pipenv install
  4. Run the server:

    pipenv run python app.py
  5. Visit http://localhost:3000 in your browser or use curl:

    curl http://localhost:3000