This commit is contained in:
2026-03-12 22:58:27 -05:00
parent 286ac00361
commit f0a2f081a7
3 changed files with 16 additions and 1 deletions

5
.env Normal file
View File

@@ -0,0 +1,5 @@
DATABASE_URL="file:./dev.db"
NEXTAUTH_SECRET="f33d7b81f185675438888062a4d9302d"
NEXTAUTH_URL="http://localhost:3000"
GOOGLE_CLIENT_ID="dummy"
GOOGLE_CLIENT_SECRET="dummy"

10
.env.example Normal file
View File

@@ -0,0 +1,10 @@
# Database
DATABASE_URL="file:/app/data/dev.db"
# Authentication
NEXTAUTH_URL="http://your-unraid-ip:3000"
NEXTAUTH_SECRET="your-secret-here-use-openssl-rand-hex-32"
# Google OAuth
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"

2
.gitignore vendored
View File

@@ -31,7 +31,7 @@ yarn-error.log*
.pnpm-debug.log* .pnpm-debug.log*
# env files (can opt-in for committing if needed) # env files (can opt-in for committing if needed)
.env* #.env*
# vercel # vercel
.vercel .vercel