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