-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
47 lines (38 loc) · 1.72 KB
/
.env.example
File metadata and controls
47 lines (38 loc) · 1.72 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
# .env.example
# This file contains environment variables for AskLeap AI
# Copy this file to .env and fill in your values
#=======================================================================
# REQUIRED FOR LOCAL DEVELOPMENT
#=======================================================================
# OpenAI configuration (REQUIRED)
# Used for generating animation content and script
OPENAI_API_KEY=your_openai_api_key_here
# Basic server configuration (REQUIRED)
PORT=8000
BASE_URL=http://localhost:8000
#=======================================================================
# OPTIONAL FOR LOCAL DEVELOPMENT (REQUIRED FOR PRODUCTION)
#=======================================================================
# Supabase configuration
# For local development, you can use local storage instead (see below)
SUPABASE_URL=your_supabase_url_here
SUPABASE_KEY=your_supabase_service_role_key_here
SUPABASE_STORAGE_BUCKET=videos
USE_SUPABASE_STORAGE=true
# Email configuration
# Optional for local testing, required for production to send notifications
SENDGRID_API_KEY=your_sendgrid_api_key_here
NOTIFICATION_EMAIL_FROM=noreply@example.com
# LangSmith configuration
# Optional for monitoring/debugging LLM workflows
LANGSMITH_API_KEY=your_langsmith_api_key_here
LANGSMITH_TRACING=true
LANGSMITH_ENDPOINT=https://api.smith.langchain.com
LANGSMITH_PROJECT=your_langsmith_project_name
#=======================================================================
# LOCAL DEVELOPMENT ALTERNATIVES
#=======================================================================
# To use local file storage instead of Supabase (for development)
# Uncomment and set to use local storage instead of Supabase
# USE_SUPABASE_STORAGE=false
# LOCAL_STORAGE_PATH=./generated/videos