Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ context-repos/

# Cursor IDE rules
.cursor/

# Local Netlify folder
.netlify
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
This is a React+Vite project.

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion convex/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineSchema({
supabaseUserId: v.optional(v.string()),
})
.index('by_username', ['username'])
.index('by_email', ['email'])
.index('email', ['email'])
.index('by_supabase_id', ['supabaseUserId']),

// Music service connections (for Discogs, Spotify, etc.)
Expand Down
17 changes: 0 additions & 17 deletions entry-worker.js

This file was deleted.

7 changes: 7 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[build]
command = "vite build"
dir = "dist/client"
[dev]
command = "pnpm run dev"
targetPort = 3000
port = 8888
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"dev:frontend": "vite dev",
"dev:backend": "convex dev",
"build": "vite build",
"start": "wrangler dev",
"preview": "vite preview",
"---------------TESTING-----------------": "🧪",
"test": "vitest run",
Expand All @@ -28,7 +27,7 @@
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"pre-pr": "npm-run-all --sequential format:check lint:warn test",
"---------------MAINTENANCE-----------------": "🧹",
"clean": "rm -rf .next .output dist node_modules",
"clean": "rm -rf .next .output dist node_modules .vercel",
"reinstall": "rm -rf node_modules pnpm-lock.yaml && pnpm install",
"---------------CONVEX DATA SYNC-----------------": "📦",
"convex:export:from": "npx convex export --env-file .env.source --path convex-data.zip",
Expand All @@ -44,6 +43,7 @@
"@crate.ai/discogs-sdk": "^2.3.0",
"@fontsource-variable/inter": "^5.2.8",
"@hookform/resolvers": "^3.9.0",
"@netlify/vite-plugin-tanstack-start": "^1.2.6",
"@opentelemetry/api": "^1.9.0",
"@oslojs/crypto": "^1.0.1",
"@radix-ui/react-avatar": "^1.1.2",
Expand All @@ -57,6 +57,7 @@
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/devtools-vite": "^0.4.1",
"@tanstack/react-router": "^1.139.3",
"@tanstack/react-start": "^1.139.3",
"@tanstack/react-table": "^8.21.3",
Expand Down Expand Up @@ -88,7 +89,6 @@
},
"devDependencies": {
"@antfu/ni": "^27.0.1",
"@cloudflare/vite-plugin": "^1.17.0",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
Expand All @@ -107,12 +107,12 @@
"jsdom": "^27.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"serve": "^14.2.4",
"tailwindcss": "^4.1.17",
"typescript": "^5",
"vinxi": "^0.5.8",
"vite": "^7.2.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15",
"wrangler": "^4.53.0"
"vitest": "^4.0.15"
}
}
Loading
Loading