APP_NAME='opensoft'
SUPABASE_URL=
SUPABASE_KEY=
curl -sSL https://install.python-poetry.org | python3 -
or
sudo apt install python3-poetry
poetry init
poetry install
PYTHONPATH=src poetry run uvicorn main:app --reload
poetry add package_name
-
GET http://localhost:8000/activity
→ Fetches all activity records. -
GET http://localhost:8000/activity/EMP0002
→ Fetches activity records for employee with IDEMP0002
.