-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.local.example
More file actions
30 lines (26 loc) · 1.21 KB
/
.env.local.example
File metadata and controls
30 lines (26 loc) · 1.21 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
# Next.js Local Development Environment Variables
# Copy this file to .env.local for Next.js development (pnpm dev)
# Public variables (available in browser)
# These variables will be exposed to the client-side code
NEXT_PUBLIC_URL=http://localhost:3000
NEXT_PUBLIC_API_URL=http://localhost:3000/api
NEXT_PUBLIC_GITHUB_REPO_OWNER=allthingslinux
NEXT_PUBLIC_GITHUB_REPO_NAME=applications
# Private variables (server-side only)
# These variables are only available in server-side code and API routes
# DO NOT prefix these with NEXT_PUBLIC_ as they contain sensitive information
GITHUB_TOKEN=your_github_token_here
MONDAY_API_KEY=your_monday_api_key_here
MONDAY_BOARD_ID=your_monday_board_id_here
DISCORD_WEBHOOK_URL=your_discord_webhook_url_here
# QuickBooks Integration (optional - use sandbox for local development)
# Only needed if using QuickBooks financial integration
QUICKBOOKS_CLIENT_ID=your_sandbox_client_id_here
QUICKBOOKS_CLIENT_SECRET=your_sandbox_client_secret_here
QUICKBOOKS_REFRESH_TOKEN=your_sandbox_refresh_token_here
QUICKBOOKS_REALM_ID=your_sandbox_realm_id_here
QUICKBOOKS_ENVIRONMENT=sandbox
QUICKBOOKS_ADMIN_KEY=your_sandbox_admin_key_here
# Development settings
SKIP_ENV_VALIDATION=true
NODE_ENV=development