diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..26d0710 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea +venv +__pycache__ diff --git a/requirements.txt b/requirements.txt index 71b6514..f3cd22d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ arrow fastapi==0.75.1 supabase~=0.3.0 python-dotenv~=0.19.2 -pydantic~=1.9.0 +pydantic~=1.10.0 starlette~=0.17 uvicorn -pybgpkit==0.2.1 +pybgpkit==0.4.3 diff --git a/start-debug.sh b/start-debug.sh index da111f6..6068246 100755 --- a/start-debug.sh +++ b/start-debug.sh @@ -1,3 +1,7 @@ #!/bin/bash +python3 -m venv venv +pip3 install --upgrade pip +pip3 install -r requirements.txt + python3 -m uvicorn main:app --host 0.0.0.0 --reload