setup workos

This commit was merged in pull request #10.
This commit is contained in:
2026-05-02 20:57:09 -04:00
committed by Richie
parent de9e59b5f4
commit 7f2b388e7a
20 changed files with 1286 additions and 142 deletions
+21
View File
@@ -0,0 +1,21 @@
# Postgres used by the FastAPI app
DATA_SCIENCE_DEV_DB=your_existing_database
DATA_SCIENCE_DEV_HOST=your_existing_postgres_host
DATA_SCIENCE_DEV_PORT=5432
DATA_SCIENCE_DEV_USER=your_existing_postgres_user
DATA_SCIENCE_DEV_PASSWORD=your_existing_postgres_password
# WorkOS AuthKit
WORKOS_API_KEY=sk_test_your_workos_api_key
WORKOS_CLIENT_ID=client_your_workos_client_id
WORKOS_COOKIE_PASSWORD=replace_with_a_long_random_secret_at_least_32_chars
WORKOS_ORGANIZATION_ID=org_your_workspace_org_id
WORKOS_REDIRECT_URI=http://localhost:8000/callback
WORKOS_LOGOUT_REDIRECT_URI=http://localhost:8000/
WORKOS_SESSION_COOKIE_NAME=workos_session
# Optional local port overrides for Docker Compose
WEB_PUBLISHED_PORT=8000
# Only used if you explicitly start the optional local Postgres profile
POSTGRES_PUBLISHED_PORT=5432