Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
Blame · Line-by-line history

.env.example

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

.env.exampleBlame22 lines · 1 contributor
fc1817aClaude1DATABASE_URL=postgresql://user:password@host/gluecron
2GIT_REPOS_PATH=./repos
3PORT=3000
4GATETEST_URL=https://gatetest.ai/api/scan/run
e883329Claude5GATETEST_API_KEY=
ad6d4adClaude6# Inbound GateTest callback auth — set one so GateTest can POST results back.
7# See GATETEST_HOOK.md for payload + endpoint details.
8# Generate a secret with: openssl rand -hex 32
9GATETEST_CALLBACK_SECRET=
10GATETEST_HMAC_SECRET=
43cf9b0Claude11CRONTECH_DEPLOY_URL=https://crontech.ai/api/hooks/gluecron/push
12# Bearer token sent on the outbound Crontech deploy webhook. Obtain from
13# Crontech (one per Gluecron install). Unset → Crontech rejects with 401.
14GLUECRON_WEBHOOK_SECRET=
e883329Claude15ANTHROPIC_API_KEY=
24cf2caClaude16# Email (Block A8). Provider=log just writes to stderr (safe default).
17# Switch to "resend" in prod and set RESEND_API_KEY.
18EMAIL_PROVIDER=log
19EMAIL_FROM=gluecron <no-reply@gluecron.local>
20RESEND_API_KEY=
21# Used to build absolute URLs in outbound emails + webhooks.
22APP_BASE_URL=http://localhost:3000