Skip to content

Commit 4ed0ec4

Browse files
Krigsclaude
andcommitted
docs: add .env.example with required environment variables
Lists all Neon, Redis, and Groq variables needed for the app. Values are auto-populated on Vercel via integrations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 6a37a65 commit 4ed0ec4

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# ===========================================
2+
# ODIN Framework - Environment Variables
3+
# ===========================================
4+
# Copy this file to .env.local and fill in your values
5+
# These are automatically set on Vercel via integrations
6+
7+
# ----- PostgreSQL (Neon) -----
8+
DATABASE_URL=
9+
POSTGRES_URL=
10+
POSTGRES_PRISMA_URL=
11+
POSTGRES_URL_NO_SSL=
12+
POSTGRES_URL_NON_POOLING=
13+
DATABASE_URL_UNPOOLED=
14+
POSTGRES_HOST=
15+
PGHOST=
16+
PGHOST_UNPOOLED=
17+
POSTGRES_USER=
18+
PGUSER=
19+
POSTGRES_PASSWORD=
20+
PGPASSWORD=
21+
POSTGRES_DATABASE=
22+
PGDATABASE=
23+
NEON_PROJECT_ID=
24+
25+
# ----- Redis -----
26+
REDIS_URL=
27+
28+
# ----- LLM Providers -----
29+
GROQ_API_KEY=

odin-framework/apps/web/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ npm-debug.log*
2525
yarn-debug.log*
2626
yarn-error.log*
2727

28-
# env files (can opt-in for commiting if needed)
28+
# env files
2929
.env*
30+
!.env.example
3031

3132
# vercel
3233
.vercel

0 commit comments

Comments
 (0)