Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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