From 0f7f5704daad2a4c70962383cd8431b50462908f Mon Sep 17 00:00:00 2001 From: MrPiglr <31398225+MrPiglr@users.noreply.github.com> Date: Mon, 22 Dec 2025 22:33:48 +0000 Subject: [PATCH] modified: .env --- .env | 5 +- .vscode/launch.json | 24 + client/index.html | 7 +- client/src/pages/admin-sites.tsx | 129 +- migrations/0000_worried_mastermind.sql | 260 ++++ migrations/meta/0000_snapshot.json | 1591 ++++++++++++++++++++++++ migrations/meta/_journal.json | 13 + package-lock.json | 179 ++- package.json | 1 + server/index.ts | 6 +- server/routes.ts | 37 + server/storage.ts | 71 ++ server/websocket.ts | 36 + shared/schema.ts | 304 ++++- vite.config.ts | 3 + 15 files changed, 2642 insertions(+), 24 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 migrations/0000_worried_mastermind.sql create mode 100644 migrations/meta/0000_snapshot.json create mode 100644 migrations/meta/_journal.json create mode 100644 server/websocket.ts diff --git a/.env b/.env index fd075aa..6076ac3 100644 --- a/.env +++ b/.env @@ -1,5 +1,6 @@ -DATABASE_URL=postgresql://postgres:[YOUR_PASSWORD]@db.kmdeisowhtsalsekkzqd.supabase.co:5432/postgres +DATABASE_URL=postgresql://postgres:Max!FTW2023!@db.kmdeisowhtsalsekkzqd.supabase.co:5432/postgres SUPABASE_URL=https://kmdeisowhtsalsekkzqd.supabase.co SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImttZGVpc293aHRzYWxzZWtrenFkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTM3Mzc2NTIsImV4cCI6MjA2OTMxMzY1Mn0.2mvk-rDZnHOzdx6Cgcysh51a3cflOlRWO6OA1Z5YWuQ AI_INTEGRATIONS_OPENAI_BASE_URL=https://placeholder.openai.com -AI_INTEGRATIONS_OPENAI_API_KEY=placeholder_key \ No newline at end of file +AI_INTEGRATIONS_OPENAI_API_KEY=placeholder_key +SESSION_SECRET=3a44273587118f6f2926b9b6839f2ddea3aea4f75ccb78b9510611b399a42823 \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ae2aa66 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/client/index.html b/client/index.html index d89c158..5ed491e 100644 --- a/client/index.html +++ b/client/index.html @@ -45,14 +45,15 @@
- + -->