-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathenv.example
More file actions
21 lines (17 loc) · 1.07 KB
/
Copy pathenv.example
File metadata and controls
21 lines (17 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Database URLs - Set these to the same postgres URL which is normally DATABASE_URL
POSTGRES_URL="postgres://your_tenant_id:your_secret_key@db.prisma.io:5432/postgres?sslmode=require"
# PRISMA_DATABASE_URL can be either Prisma Accelerate URL or regular postgres URL
PRISMA_DATABASE_URL="prisma+postgres://accelerate.prisma-data.net/?api_key=your_prisma_accelerate_api_key_here"
# Or use regular postgres:
# PRISMA_DATABASE_URL="postgres://your_tenant_id:your_secret_key@db.prisma.io:5432/postgres?sslmode=require"
# OnchainKit API Key - Get this from Coinbase Developer Platform
NEXT_PUBLIC_ONCHAINKIT_API_KEY="your_onchainkit_api_key_here"
# Base Verify Configuration
NEXT_PUBLIC_BASE_VERIFY_API_URL="https://verify.base.dev/v1"
NEXT_PUBLIC_BASE_VERIFY_WEBAPP_URL="https://verify.base.dev"
BASE_VERIFY_SECRET_KEY="sk_live_your_secret_key_here_64_character_hex_string"
NEXT_PUBLIC_BASE_VERIFY_PUBLISHER_KEY="pk_live_your_publisher_key_here_64_character_hex_string"
# Your application's URL
NEXT_PUBLIC_APP_URL="https://baseverifydemo.com"
# Development Tools
NEXT_PUBLIC_LOAD_ERUDA=true