22 lines
815 B
Bash
22 lines
815 B
Bash
# 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
|