-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (33 loc) · 1.4 KB
/
.env.example
File metadata and controls
38 lines (33 loc) · 1.4 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
36
37
38
# ===========================================
# Compare Audius - Environment Variables
# ===========================================
# Copy this file to .env.local and fill in values
# -------------------------------------------
# Database (Turso)
# -------------------------------------------
# Get these from: turso db show <db-name> --url
# turso db tokens create <db-name>
TURSO_DATABASE_URL=libsql://your-database.turso.io
TURSO_AUTH_TOKEN=your-auth-token
# -------------------------------------------
# Authentication (NextAuth.js)
# -------------------------------------------
# Generate with: openssl rand -base64 32
AUTH_SECRET=your-generated-secret
# Your production URL (for OAuth callbacks)
AUTH_URL=http://localhost:3000
# -------------------------------------------
# Google OAuth
# -------------------------------------------
# Create at: https://console.cloud.google.com/apis/credentials
# Redirect URI: {AUTH_URL}/api/auth/callback/google
# (Fallbacks supported: AUTH_GOOGLE_ID / AUTH_GOOGLE_SECRET)
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-google-client-secret
# -------------------------------------------
# Cloudinary (Image uploads)
# -------------------------------------------
# Get credentials from: https://console.cloudinary.com/
CLOUDINARY_CLOUD_NAME=your-cloud-name
CLOUDINARY_API_KEY=your-api-key
CLOUDINARY_API_SECRET=your-api-secret