Skip to content

Commit 7247351

Browse files
committed
feat: add environment variable configuration template
- Add .env.example with documented environment variables - Provides clear template for local development setup - Follows Next.js configuration best practices
1 parent 5c145c5 commit 7247351

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.env.example

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Example environment variables
2+
# Copy this file to .env.local and update with your values
3+
4+
# App Configuration
5+
NEXT_PUBLIC_APP_NAME=Mr. Timely
6+
NEXT_PUBLIC_BASE_URL=https://your-domain.com
7+
8+
# Analytics (optional)
9+
# NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
10+
11+
# Database (if using)
12+
# DATABASE_URL=your-database-url
13+
14+
# Third-party services (if using)
15+
# STRIPE_PUBLISHABLE_KEY=pk_test_
16+
# STRIPE_SECRET_KEY=sk_test_
17+
18+
# Development only
19+
# NEXT_PUBLIC_DEBUG=true

0 commit comments

Comments
 (0)