-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.env.example
More file actions
56 lines (48 loc) · 1.78 KB
/
Copy path.env.example
File metadata and controls
56 lines (48 loc) · 1.78 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
# Supabase
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
SUPABASE_PROJECT_REF=project-ref-here
SUPABASE_ACCESS_TOKEN=your-access-token
# Stripe
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_...
STRIPE_PRO_PRICE_ID=price_...
# Jitsi (optional - defaults to meet.jit.si)
NEXT_PUBLIC_JITSI_DOMAIN=meet.jit.si
# App
NEXT_PUBLIC_APP_URL=http://localhost:8080
CRON_SECRET=change-me
# Email (Resend)
RESEND_API_KEY=re_...
EMAIL_FROM=support@ugig.net
EMAIL_FROM_NAME=Ugig Support
# AgentPass (optional — enables passport-based auth for AI agents)
# AGENTPASS_API_URL=https://api.agentpass.space
# CoinPay OAuth (OIDC login)
COINPAY_OAUTH_CLIENT_ID=cp_...
COINPAY_OAUTH_CLIENT_SECRET=cps_...
COINPAY_API_KEY=cp_live_...
# Site-wide CoinPay business id used for funding, gigs, bounties, invoices,
# subscriptions, and tips.
COINPAY_MERCHANT_ID=...
# Site-wide CoinPay webhook secret for /api/webhooks/coinpay.
COINPAY_FUNDING_WEBHOOK_SECRET=whsecret_...
# LNbits (Funding)
LNBITS_URL=https://ln.example.com
LNBITS_WALLET_ID=
LNBITS_ADMIN_KEY=
LNBITS_INVOICE_KEY=
# GitHub (optional) — lets bounties post a status comment on the GitHub issue
# they fund and mark it paid on payout. Two auth modes, token takes precedence:
#
# 1. GITHUB_TOKEN — a PAT or `gh auth token`. Simplest: it already covers every
# repo you can write to (no per-repo install). Comments post as that user.
# 2. GITHUB_APP_ID + GITHUB_APP_PRIVATE_KEY — a GitHub App installed on the
# target repos. PEM newlines may be escaped as \n on a single line.
#
# If neither is set, the comment feature is silently skipped.
GITHUB_TOKEN=
GITHUB_APP_ID=
GITHUB_APP_PRIVATE_KEY=