-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
executable file
·38 lines (34 loc) · 1.36 KB
/
.env.example
File metadata and controls
executable file
·38 lines (34 loc) · 1.36 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
# Authentication (optional - only needed if VITE_ENABLE_AUTH=true)
VITE_ENABLE_AUTH=false
VITE_SUPABASE_URL=your-supabase-project-url
VITE_SUPABASE_ANON_KEY=your-supabase-anon-key
VITE_GITHUB_CLIENT_ID=your-github-client-id
VITE_GITHUB_CLIENT_SECRET=your-github-client-secret
# App Configuration
VITE_APP_URL=http://localhost:3489
# AI Integration
VITE_POLLINATIONS_API_TOKEN=your-pollinations-api-token
# External Integrations
# Phase 2: GitHub OAuth integration is now functional!
VITE_ENABLE_INTEGRATIONS=true
VITE_ENABLE_GITHUB_INTEGRATION=true
VITE_ENABLE_GOOGLE_DRIVE_INTEGRATION=false
VITE_ENABLE_DROPBOX_INTEGRATION=false
# GitHub Integration OAuth (required if VITE_ENABLE_GITHUB_INTEGRATION=true)
#
# Setup Instructions:
# 1. Go to https://github.com/settings/developers
# 2. Click "New OAuth App"
# 3. Fill in:
# - Application name: Notara (or your app name)
# - Homepage URL: http://localhost:3489 (or your domain)
# - Authorization callback URL: http://localhost:3489/oauth/github/callback
# 4. Click "Register application"
# 5. Copy the "Client ID" and paste it below
# 6. DO NOT use Client Secret (we use PKCE for security)
#
# For production:
# - Update callback URL to your production domain: https://yourdomain.com/oauth/github/callback
# - Create a separate OAuth App for production environment
#
VITE_GITHUB_OAUTH_CLIENT_ID=your-github-oauth-app-client-id