Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# ─── Google Cloud ───────────────────────────────────────────────
# Required: Google Cloud API key with Drive API enabled
# Option 1: API Key (for publicly shared folders)
GOOGLE_API_KEY=
# Option 2: Service Account (for private/restricted folders)
GOOGLE_CLIENT_EMAIL=
GOOGLE_PRIVATE_KEY=
# Required: Root Drive folder ID (from the folder URL: drive.google.com/drive/folders/{THIS})
GOOGLE_DRIVE_FOLDER_ID=

Expand Down
1 change: 1 addition & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('next').NextConfig} */
// Force cache invalidation
const nextConfig = {
images: {
remotePatterns: [
Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@
"@supabase/supabase-js": "^2.99.0",
"jszip": "^3.10.1",
"next": "^15",
"react": "^19",
"react-dom": "^19",
"react": "19.2.6",
"react-dom": "19.2.6",
"sharp": "^0.34.5"
},
"pnpm": {
"overrides": {
"react": "19.2.6",
"react-dom": "19.2.6"
}
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^30.0.0",
Expand Down
Loading
Loading