Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 352 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 352 Bytes

calculator-fastapi-app

Running the application

  1. Open the terminal

  2. Create a virtual environment python3 -m venv venv

  3. Then activate the virtual environment (MAC) source venv/bin/activate

  4. Install all the dependencies pip install -r requirements.txt

  5. Start the application on port 8001 uvicorn main:app --reload --port 8001