-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
26 lines (22 loc) · 1.11 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
# GitHub API Token (for fetching repository data)
# Create a personal access token at: https://github.com/settings/tokens
# Required scopes: public_repo (or repo for private repos)
TOKEN=ghp_your_github_token_here
# Vercel Blob Storage (leaderboard, and uploaded project images)
# Add this to your .env.local file (for local development)
# or .env file (both work, but .env.local is preferred for local dev)
BLOB_READ_WRITE_TOKEN=your_vercel_blob_token_here
# Get your Vercel Blob token from: https://vercel.com/dashboard/stores
# Make sure to restart your dev server after adding tokens
# Turso Database (serverless SQLite)
# Sign up at: https://turso.tech/
# Install CLI: curl -sSfL https://get.tur.so/install.sh | bash
# Create DB: turso db create your-database-name
# Get URL: turso db show your-database-name --url
# Get Token: turso db tokens create your-database-name
TURSO_DATABASE_URL=libsql://your-database.turso.io
TURSO_AUTH_TOKEN=your-turso-auth-token
# Resend Email (for CMS magic link authentication)
# Sign up at: https://resend.com/
RESEND_API_KEY=re_your_resend_api_key
CMS_ADMIN_EMAIL=your-email@example.com