Skip to content

SudodevsHQ/ketsuro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ketsuro-backend

Submission for Hackout 2020

Ketsuro Client

Installation

cd to ketsuro/ and create a virtual environment

python -m venv env

activate the virtual environment

source env/bin/activate

then

pip install -r requirements.txt

debug

uvicorn main:app --reload

deploy

uvicorn main:app --host 0.0.0.0 --port 8000