-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
51 lines (41 loc) · 2.07 KB
/
Copy path.env.example
File metadata and controls
51 lines (41 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ----------------------------------------------------------------------------
# sourcerykit — example environment variables
# ----------------------------------------------------------------------------
# Copy to `.env` (or export in your shell) and fill in real values.
# `.env` is git- and docker-ignored; `.env.example` is the canonical list.
#
# Two-tier config:
# Global (OS config folder for applications): api_key, org_id (user-level)
# Local (.env): everything else (project-level)
#
# All vars below can be set via env vars or in .env.
# Env vars take precedence over .env values.
# ----------------------------------------------------------------------------
# ===== Global config (set via `sourcerykit init`, stored in OS app dir) =======
# Provably integration API key
# Read by: get_settings() -> Settings.api_key
PROVABLY_API_KEY=zk-XXX
# Provably organisation UUID
# Read by: get_settings() -> Settings.org_id
SOURCERYKIT_ORG_ID=00000000-0000-0000-0000-000000000000
# ===== Local config (set via `sourcerykit init`, stored in project .env) ======
# Project name — used as the Provably collection name
# Read by: get_settings() -> Settings.project_name
# SOURCERYKIT_PROJECT_NAME=my-project
# Postgres DSN for intercept storage, trusted-endpoint registry, and the
# handoff preprocess/padding path. Hosted PostgreSQL only.
# Read by: get_settings() -> Settings.postgres_url
# SOURCERYKIT_POSTGRES_URL=postgresql://user:password@db-host.example.com:5432/provably
# ===== Bootstrap resource IDs (auto-generated by `sourcerykit init`) ==========
# These are resolved during the Provably handshake and cached here.
# Do NOT edit manually — re-run `sourcerykit init` to regenerate.
# SOURCERYKIT_MIDDLEWARE_ID=
# SOURCERYKIT_DATABASE_ID=
# SOURCERYKIT_SCHEMA_ID=
# SOURCERYKIT_TABLE_ID=
# SOURCERYKIT_COLLECTION_ID=
# SOURCERYKIT_INTEGRATION_KEY=
# ===== Optional (override defaults) ===========================================
# SOURCERYKIT_PROVABLY_APP_URL=https://app.provably.ai
# SOURCERYKIT_PROVABLY_API_URL=https://api.provably.ai
# SOURCERYKIT_PROVABLY_MCP_URL=https://mcp.provably.ai