-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (26 loc) · 1003 Bytes
/
.env.example
File metadata and controls
35 lines (26 loc) · 1003 Bytes
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
# GitHub OAuth App
GITHUB_CLIENT_ID= # GitHub OAuth App Client ID
GITHUB_CLIENT_SECRET= # GitHub OAuth App Client Secret
# Session secret (openssl rand -base64 32)
AUTH_SECRET=
# App URL
NEXT_PUBLIC_APP_URL= # Deployed app URL, e.g. https://web-azure-sigma-44.vercel.app
# ML API
ML_API_URL=http://localhost:8000 # HF Spaces: https://ritunjaym-codelens-api.hf.space
# GitHub Webhook (openssl rand -hex 20)
GITHUB_WEBHOOK_SECRET=
# PartyKit
NEXT_PUBLIC_PARTYKIT_HOST=localhost:1999 # Production: <your-project>.partykit.dev
# W&B experiment tracking
WANDB_API_KEY=
WANDB_PROJECT=codelens
# HuggingFace (for pushing models / dataset)
HF_TOKEN=
# Legacy / compatibility aliases
GITHUB_TOKEN=
NEXTAUTH_SECRET=
NEXTAUTH_URL=http://localhost:3000
# Solid.js frontend (apps/web-solid)
VITE_ML_API_URL= # HF Spaces ML API URL
VITE_PARTYKIT_HOST= # PartyKit host (from partykit.dev dashboard)
APP_URL= # Deployed Solid app URL (for OAuth callback)