-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) 路 1.13 KB
/
Copy path.env.example
File metadata and controls
34 lines (27 loc) 路 1.13 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
# Database - Use a regular PostgreSQL connection
# You can use one of these options:
# 1. Local PostgreSQL: DATABASE_URL="postgresql://user:password@localhost:5432/skillbridge"
# 2. Supabase: DATABASE_URL="postgresql://postgres:[YOUR-PASSWORD]@db.[YOUR-PROJECT-REF].supabase.co:5432/postgres"
# 3. Vercel Postgres: Get from your Vercel dashboard
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/skillbridge"
# NextAuth.js
NEXTAUTH_URL="http://localhost:3004"
NEXTAUTH_SECRET="your-nextauth-secret-here-generate-with-openssl"
# Google OAuth
GOOGLE_CLIENT_ID="your-google-client-id-here"
GOOGLE_CLIENT_SECRET="your-google-client-secret-here"
# OpenAI
OPENAI_API_KEY="your-openai-api-key-here"
# ElevenLabs
ELEVENLABS_API_KEY="your-elevenlabs-api-key-here"
ELEVENLABS_VOICE_ID="your-default-voice-id-here"
# Uclone MCP Server
UCLONE_MCP_SERVER_URL="your-uclone-mcp-server-url"
UCLONE_MCP_API_KEY="your-uclone-mcp-api-key"
# AWS S3 (Optional)
AWS_ACCESS_KEY_ID="your-aws-access-key"
AWS_SECRET_ACCESS_KEY="your-aws-secret-key"
AWS_REGION="us-east-1"
AWS_S3_BUCKET="skillbridge-ai-uploads"
# Redis (Optional)
REDIS_URL="redis://localhost:6379"