-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (29 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
39 lines (29 loc) · 1.14 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
# Database
DATABASE_URL="postgresql://ascent:ascent@localhost:5432/ascent"
# For Prisma migrations — set to the same value as DATABASE_URL for direct (non-pooled) connections
DIRECT_URL="postgresql://ascent:ascent@localhost:5432/ascent"
# NextAuth
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="your-secret-here-change-in-production"
# Admin
ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin
# Feature flags
# Set to false to hide the beta banner once the app is stable
NEXT_PUBLIC_BETA=true
DISABLE_ADMIN_RATE_LIMIT=true
# AI feedback provider — options: nvidia (default), openai, anthropic, ollama
# Without a provider key AI feedback is disabled; static feedback is used instead.
AI_PROVIDER=nvidia
# NVIDIA NIM (default provider — get a key at build.nvidia.com)
#NVIDIA_API_KEY=nvapi-******
# OpenAI
# OPENAI_API_KEY=
# Anthropic / Claude
# ANTHROPIC_API_KEY=
# Ollama (local inference, no key needed)
# Start with: docker compose --profile ollama up
# Then pull a model: docker compose exec ollama ollama pull llama3.2
# OLLAMA_BASE_URL=http://localhost:11434
# Optional: override the model used by any provider
# AI_MODEL=meta/llama-3.1-70b-instruct