Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 635 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 635 Bytes

Explorer FastAPI

Development setup

  1. Frok this repository
  2. Clone on your local machine
    https://github.com/coderboy-organization/explorer-fastapi.git
  3. Create a VENV
    python -m venv env
  4. Run your Virtual Env
    • For windows (Bash Terminal)
    source env/Scripts/activate
    • For Mac or Linux
    source env/bin/activate
  5. Install all dependency which we mention on requirements.txt file
    pip install -r requirements.txt
  6. Run development server with uvicorn
    uvicorn main:app --port 5000 --reload