-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (39 loc) · 2.5 KB
/
.env.example
File metadata and controls
57 lines (39 loc) · 2.5 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
# .env.example — copy this file to .env and fill in your values.
# Never commit .env to version control.
# ── Required ──────────────────────────────────────────────────────────────────
# Numeric App ID shown on the GitHub App settings page.
GITHUB_APP_ID=
# RSA private key from the downloaded .pem file.
# Paste the full PEM on a SINGLE LINE, replacing each real newline with \n.
# Run this command to convert the downloaded file:
# awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' layne-dev.pem
GITHUB_APP_PRIVATE_KEY=
# Webhook secret you set when creating the GitHub App.
# Generate one with: openssl rand -hex 32
GITHUB_WEBHOOK_SECRET=
# ── Optional ──────────────────────────────────────────────────────────────────
# Redis connection string. Defaults to redis://localhost:6379.
# When running docker-compose.dev.yml, the default is already correct.
# REDIS_URL=redis://localhost:6379
# Port for the webhook server. Defaults to 3000.
# PORT=3000
# Set to true to enable verbose debug logging (git commands, file lists, API calls).
# DEBUG_MODE=true
# Required when any repo in config/layne.json has claude.enabled: true.
# ANTHROPIC_API_KEY=
# ── Notifications ─────────────────────────────────────────────────────────────
# Global Rocket.Chat incoming webhook URL.
# Reference this in config/layne.json as "$ROCKETCHAT_WEBHOOK_URL".
# ROCKETCHAT_WEBHOOK_URL=
# Add extra per-repo webhook variables here as needed, for example:
# PAYMENTS_ROCKETCHAT_WEBHOOK_URL=
# ── Production only (not needed for local development) ────────────────────────
# Your public domain name. Used for TLS termination and Rocket.Chat icon URLs.
# DOMAIN=layne.example.com
# Email address for Let's Encrypt expiry notifications.
# LETSENCRYPT_EMAIL=you@example.com
# ── Metrics (optional) ────────────────────────────────────────────────────────
# Set to true to enable Prometheus metrics endpoints.
# METRICS_ENABLED=false
# Port for the worker Prometheus metrics server.
# METRICS_PORT=9091