- chat-context.ts: session history now from fs_sessions - /api/sessions: reads from fs_sessions (NextAuth session auth) - /api/github/connect: NextAuth session + stores in fs_users.data - /api/user/api-key: NextAuth session + stores in fs_users.data - /api/projects/[id]/vision: PATCH to fs_projects JSONB - /api/projects/[id]/knowledge/items: reads from fs_knowledge_items - /api/projects/[id]/knowledge/import-ai-chat: uses pg createKnowledgeItem - lib/server/knowledge.ts: fully rewritten to use PostgreSQL - entrypoint.sh: add fs_knowledge_items and chat_conversations tables Made-with: Cursor
59 lines
2.4 KiB
Bash
59 lines
2.4 KiB
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "=== Syncing NextAuth schema ==="
|
|
npx prisma db push --accept-data-loss --skip-generate
|
|
|
|
echo "=== Ensuring app tables exist ==="
|
|
node -e "
|
|
const { Pool } = require('pg');
|
|
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
|
|
pool.query(\`
|
|
CREATE EXTENSION IF NOT EXISTS pgcrypto;
|
|
CREATE TABLE IF NOT EXISTS fs_users (
|
|
id TEXT PRIMARY KEY DEFAULT gen_random_uuid()::text,
|
|
user_id TEXT,
|
|
data JSONB NOT NULL DEFAULT '{}'::jsonb,
|
|
created_at TIMESTAMP DEFAULT NOW(),
|
|
updated_at TIMESTAMP DEFAULT NOW()
|
|
);
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_fs_users_email_unique ON fs_users ((data->>'email'));
|
|
CREATE INDEX IF NOT EXISTS idx_fs_users_user_id ON fs_users (user_id);
|
|
CREATE TABLE IF NOT EXISTS fs_projects (
|
|
id TEXT PRIMARY KEY DEFAULT gen_random_uuid()::text,
|
|
user_id TEXT REFERENCES fs_users(id) ON DELETE CASCADE,
|
|
workspace TEXT, slug TEXT,
|
|
data JSONB NOT NULL DEFAULT '{}'::jsonb,
|
|
created_at TIMESTAMP DEFAULT NOW(),
|
|
updated_at TIMESTAMP DEFAULT NOW()
|
|
);
|
|
CREATE INDEX IF NOT EXISTS idx_fs_projects_user_id ON fs_projects (user_id);
|
|
CREATE INDEX IF NOT EXISTS idx_fs_projects_slug ON fs_projects (slug);
|
|
CREATE TABLE IF NOT EXISTS fs_sessions (
|
|
id TEXT PRIMARY KEY DEFAULT gen_random_uuid()::text,
|
|
user_id TEXT REFERENCES fs_users(id) ON DELETE CASCADE,
|
|
data JSONB NOT NULL DEFAULT '{}'::jsonb,
|
|
created_at TIMESTAMP DEFAULT NOW(),
|
|
updated_at TIMESTAMP DEFAULT NOW()
|
|
);
|
|
CREATE INDEX IF NOT EXISTS idx_fs_sessions_user_id ON fs_sessions (user_id);
|
|
CREATE INDEX IF NOT EXISTS idx_fs_sessions_project_id ON fs_sessions ((data->>'projectId'));
|
|
CREATE TABLE IF NOT EXISTS fs_knowledge_items (
|
|
id TEXT PRIMARY KEY DEFAULT gen_random_uuid()::text,
|
|
project_id TEXT NOT NULL,
|
|
data JSONB NOT NULL DEFAULT '{}'::jsonb,
|
|
created_at TIMESTAMP DEFAULT NOW(),
|
|
updated_at TIMESTAMP DEFAULT NOW()
|
|
);
|
|
CREATE INDEX IF NOT EXISTS idx_fs_knowledge_project_id ON fs_knowledge_items (project_id);
|
|
CREATE TABLE IF NOT EXISTS chat_conversations (
|
|
project_id TEXT PRIMARY KEY,
|
|
messages JSONB NOT NULL DEFAULT '[]',
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
);
|
|
\`).then(() => { console.log('App tables ready'); pool.end(); }).catch(e => { console.error('Table init error:', e.message); pool.end(); });
|
|
"
|
|
|
|
echo "=== Starting Next.js server ==="
|
|
exec node server.js
|