-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.development
More file actions
54 lines (44 loc) · 1.98 KB
/
.env.development
File metadata and controls
54 lines (44 loc) · 1.98 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
# ============================================
# GRIP - Development Environment Template
# ============================================
# Copy this to .env.development.local and fill in real values
# For local development on http://localhost:3000
# Database
DATABASE_URL="postgresql://user:password@localhost:5432/grip_dev"
# Drizzle Migrations (optional - defaults to .env.production.local)
DOTENV_CONFIG_PATH=".env.development.local"
# Authentication (Use any 32+ char string for development)
BETTER_AUTH_SECRET="dev-secret-key-at-least-32-chars-long"
BETTER_AUTH_URL="http://localhost:3000"
# GitHub OAuth (Development App)
# Create at: https://github.com/settings/developers
# Homepage: http://localhost:3000
# Callback: http://localhost:3000/api/auth/callback/github
GITHUB_CLIENT_ID="your-github-dev-client-id"
GITHUB_CLIENT_SECRET="your-github-dev-client-secret"
GITHUB_TOKEN="your-github-token"
# GitHub App (Repo Claiming)
# Create at: https://github.com/settings/apps
# Setup URL: https://usegrip.xyz/api/github/callback (proxies to localhost for dev)
GITHUB_APP_ID="your-github-app-id"
GITHUB_APP_SLUG="your-github-app-slug"
GITHUB_APP_WEBHOOK_SECRET="your-github-app-webhook-secret"
GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nyour-private-key-here\n-----END RSA PRIVATE KEY-----"
# WebAuthn / Passkey
NEXT_PUBLIC_RP_ID="localhost"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Documentation
NEXT_PUBLIC_DOCS_URL="https://docs.grip.dev"
# Tempo Blockchain (Moderato Testnet - Jan 2026)
# Note: Old Andantino testnet (42429, rpc.testnet.tempo.xyz) is deprecated
NEXT_PUBLIC_TEMPO_NETWORK="testnet"
NEXT_PUBLIC_TEMPO_RPC_URL="https://rpc.moderato.tempo.xyz"
TEMPO_RPC_URL="https://rpc.moderato.tempo.xyz"
TEMPO_CHAIN_ID="42431"
# Turnkey (Optional - for Access Key testing)
TURNKEY_ORGANIZATION_ID="your-turnkey-org-id"
TURNKEY_API_PUBLIC_KEY="your-turnkey-public-key"
TURNKEY_API_PRIVATE_KEY="your-turnkey-private-key"
# E2E Testing (Playwright)
CI=""
PLAYWRIGHT_BASE_URL="http://localhost:3000"