Files
arcade-eval/config/.env.example

19 lines
764 B
Bash

# Arcade eval credentials — copy to .env (git-ignored) and fill in.
# Load with: set -a && . ./.env && set +a
ARCADE_API_BASE=https://api.arcade.st.dev
ARCADE_DASHBOARD=https://dashboard.arcade.st.dev
# Project API key — minted in the dashboard (Phase 1, Task 1.1). Never commit the real value.
ARCADE_API_KEY=
# Headless per-user identity — the vault is keyed on the user_id string you pass.
# One API key can present as many users. (Real Entra SSO login is a cat-2 concern.)
ARCADE_USER_A=user-a@servicetitan.com
ARCADE_USER_B=user-b@servicetitan.com
# Confirmed headless auth (Arcade docs) — MCP gateway calls send:
# Authorization: Bearer ${ARCADE_API_KEY}
# Arcade-User-ID: <user_id> (any stable string; an email works)
# See LIVE-POC.md.