-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
50 lines (41 loc) · 1.26 KB
/
.env.example
File metadata and controls
50 lines (41 loc) · 1.26 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
# API Server
API_PORT=3001
DATABASE_URL=file:./data/slide-maker.db
# Auth
SESSION_SECRET=change-me-to-random-string
# Email — pick one provider: ses or smtp
# Set EMAIL_PROVIDER=ses to use Amazon SES (uses AWS credentials from Bedrock config)
EMAIL_PROVIDER=ses
SES_FROM_EMAIL=ailab@gc.cuny.edu
# SES_REGION=us-east-1 # defaults to AWS_REGION if not set
# Or use SMTP (leave EMAIL_PROVIDER blank or unset)
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASS=
SMTP_FROM=noreply@ailab.gc.cuny.edu
# AI Providers
ANTHROPIC_API_KEY=
OPENROUTER_API_KEY=
# Optional: restrict provider at runtime (also supports CLI flag --provider)
# Valid values: bedrock | anthropic | openrouter
AI_PROVIDER=
# AWS Bedrock (optional)
# Use either long-lived keys or assume-role via your environment. The SDK
# resolves credentials automatically; set region to enable Bedrock models.
AWS_REGION=
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# AWS_SESSION_TOKEN=
# Admin-only model toggles (optional)
# If set, these models appear only for admin users.
BEDROCK_SONNET_46_MODEL_ID=
ANTHROPIC_SONNET_46_MODEL_ID=
# Web Search
TAVILY_API_KEY=
BRAVE_API_KEY=
# Image Search (Pexels — openly licensed images)
PEXELS_API_KEY=
# Frontend
PUBLIC_API_URL=http://localhost:3001
PUBLIC_URL=http://localhost:5173