-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
60 lines (46 loc) · 2.04 KB
/
Copy path.env.example
File metadata and controls
60 lines (46 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
# Wesley Monorepo — Environment Variables (example)
# Copy to `.env` and adjust as needed. All vars are optional unless noted.
###############################################
# Core logging and behavior
###############################################
# Log level for CLI and host runtime
# One of: trace | debug | info | warn | error | silent
WESLEY_LOG_LEVEL=info
# Node environment; when set to "development" the runtime enables pino-pretty output
NODE_ENV=development
# Enforce git cleanliness policy for commands that write artifacts
# emit = only enforce for bundle/certs (default)
# strict= always require clean working tree
# off = never enforce
WESLEY_GIT_POLICY=emit
# Maximum GraphQL schema size accepted by the parser (bytes)
# Default: 5242880 (5 MB)
WESLEY_MAX_SCHEMA_BYTES=5242880
# Optional: explicit path to a Wesley config file (e.g., wesley.config.mjs)
WESLEY_CONFIG_FILEPATH=
# Used by cert-create when git is unavailable (e.g., CI); commit SHA to embed in SHIPME
GITHUB_SHA=
###############################################
# Rehearsal (REALM) and database connectivity
###############################################
# DSN used when provider is "supabase" (alternative env names supported)
SUPABASE_DB_URL=
SUPABASE_POSTGRES_URL=
# Optional: DSN for DB-backed tests (Bats). Tests are skipped if unset.
WESLEY_TEST_DSN=
# Core tests (packages/wesley-core) look for this; falls back to a local default
TEST_DATABASE_URL=
###############################################
# Supabase integration (optional / examples)
###############################################
# If you use the example app or Supabase features, you may need these:
SUPABASE_PROJECT_REF=
SUPABASE_URL=
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
###############################################
# Notes
###############################################
# - Internal artifacts are written under .wesley/ (evidence, SHIPME, snapshots).
# - Rehearse defaults to a local Postgres DSN if none is provided via flags/env.
# - Most CLI commands accept flags that override these values at runtime.