mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-11 06:34:44 -05:00
chore(repo): Add example .env file
This commit is contained in:
13
.env.example
Normal file
13
.env.example
Normal file
@@ -0,0 +1,13 @@
|
||||
# Clerk Authentication
|
||||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_
|
||||
CLERK_SECRET_KEY=sk_test_
|
||||
|
||||
# Database
|
||||
DATABASE_URL="postgresql://user:password@localhost:5432/dbname"
|
||||
|
||||
# Next.js
|
||||
NEXT_PUBLIC_APP_URL="http://localhost:3000"
|
||||
|
||||
# Optional: For production deployments
|
||||
# NEXT_PUBLIC_APP_URL="https://yourdomain.com"
|
||||
# VERCEL_URL="https://yourdomain.com"
|
||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -29,8 +29,11 @@ npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# env files (can opt-in for commiting if needed)
|
||||
.env*
|
||||
# Ignore all .env files
|
||||
.env
|
||||
|
||||
# Allow .env.example
|
||||
!.env.example
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
Reference in New Issue
Block a user