-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
34 lines (29 loc) · 1.25 KB
/
.env.local.example
File metadata and controls
34 lines (29 loc) · 1.25 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
# PostgreSQL — Neon
# Use the "pooled connection" string from your Neon project dashboard
# (Project → Connection Details → toggle "Pooled connection")
# Format: postgresql://user:[email protected]/dbname?sslmode=require
DATABASE_URL=postgresql://user:[email protected]/neondb?sslmode=require
# NextAuth
# Generate AUTH_SECRET with: openssl rand -base64 32
AUTH_SECRET=your-secret-here
NEXTAUTH_URL=http://localhost:3000
# OAuth providers (optional — leave blank to disable)
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
APPLE_ID=
APPLE_SECRET=
# Square Payment Configuration
# Get these from https://developer.squareup.com/apps
SQUARE_ACCESS_TOKEN=your_square_access_token
SQUARE_APPLICATION_ID=your_square_application_id
SQUARE_LOCATION_ID=your_square_location_id
SQUARE_ENVIRONMENT=sandbox
# QuickBooks Payment Configuration (alternative to Square)
QUICKBOOKS_CLIENT_ID=your_quickbooks_client_id
QUICKBOOKS_CLIENT_SECRET=your_quickbooks_client_secret
QUICKBOOKS_REDIRECT_URI=http://localhost:3000/api/payments/quickbooks/callback
QUICKBOOKS_ENVIRONMENT=sandbox
# App Configuration
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Default admin password — only used on first `npm run db:migrate`
ADMIN_PASSWORD=changeme123