-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (29 loc) · 1.69 KB
/
.env.example
File metadata and controls
35 lines (29 loc) · 1.69 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
# ─────────────────────────────────────────────
# Stock Fundamental Analysis Tool — Environment Variables
# ─────────────────────────────────────────────
# Copy this file to .env.local and fill in your values.
# Never commit .env.local or .env to version control.
# ── Database (local migrations only) ─────────
# Used by `npx prisma migrate dev` for local schema development.
DATABASE_URL="file:./dev.db"
# ── Turso (app runtime — dev + production) ───
# Create a free database at https://turso.tech
# Dev: TURSO_DATABASE_URL=file:./dev.db (local, no token needed)
# Prod: TURSO_DATABASE_URL=libsql://your-db.turso.io + token
TURSO_DATABASE_URL="file:./dev.db"
TURSO_AUTH_TOKEN=""
# ── Auth.js (next-auth) ───────────────────────
# Secret used to sign JWT session cookies.
# Generate with: openssl rand -hex 32
NEXTAUTH_SECRET="your-secret-here"
# Base URL of your app (no trailing slash).
# In production replace with your public domain.
NEXTAUTH_URL="http://localhost:3000"
# ── Anthropic API ─────────────────────────────
# Required for AI Analysis (Claude Sonnet 4.6 + web search).
# Get your key at: https://console.anthropic.com
ANTHROPIC_API_KEY="sk-ant-..."
# ── Registration Control ──────────────────────
# Set to "true" to block new user registrations.
# Useful to lock down the app after the initial setup.
DISABLE_REGISTRATION="false"