Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Database
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/leader

# Auth Secret
BETTER_AUTH_SECRET=replace-me-with-a-long-random-secret
BETTER_AUTH_BASE_URL=http://localhost:5173

# API Keys
GOOGLE_PLACES_API_KEY=replace-me
BRAVE_API_KEY=optional
OPENROUTER_API_KEY=optional
OPENROUTER_MODEL=openai/gpt-4o-mini

# Email (SMTP)
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_USER=
SMTP_PASS=
EMAIL_FROM=noreply@example.com

# Telemetry (set to false to disable remote log reporting)
LEADER_TELEMETRY=true

# Bootstrap (first-run only — customize initial admin user and organization)
BOOTSTRAP_USER_NAME=Admin
BOOTSTRAP_USER_EMAIL=admin@leader.local
BOOTSTRAP_ORGANIZATION_NAME=Leader
BOOTSTRAP_ORGANIZATION_SLUG=leader
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ build/
dist/
.env
.env.*
!.env.example
**/*.db
**/*.sqlite
**/*.sqlite3
7 changes: 7 additions & 0 deletions jean.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"scripts": {
"setup": "bun install",
"teardown": null,
"run": "bun dev"
}
}
Loading