-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (15 loc) · 988 Bytes
/
.env.example
File metadata and controls
18 lines (15 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Database (required). Use Neon (https://neon.tech) free tier for development and production.
# Example: postgresql://user:password@ep-xxx.region.aws.neon.tech/neondb?sslmode=require
DATABASE_URL="postgresql://user:password@host/database?sslmode=require"
# Clerk (https://clerk.com). Get keys from your Clerk dashboard.
# In Dashboard → Configure → Paths, add http://localhost:3002 to "Allowed redirect URLs" for local development.
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_..."
CLERK_SECRET_KEY="sk_..."
# Optional: Redirect after sign-in/sign-up (defaults to /dashboard)
# NEXT_PUBLIC_CLERK_SIGN_IN_FORCE_REDIRECT_URL="/dashboard"
# NEXT_PUBLIC_CLERK_SIGN_UP_FORCE_REDIRECT_URL="/dashboard"
# Optional: Sync script authentication. Generate a secret and set it here. Use the same value as
# NOTEFLOW_SYNC_TOKEN when running the sync script to upload notes to your account.
NOTEFLOW_SYNC_SECRET=""
# Optional: OpenAI API key for AI note generation (see AI_SETUP.md).
OPENAI_API_KEY=""