Read-it-later social network

remove drizzle

+1 -132
-3
.env.example
··· 1 - # Replace with your DB credentials! 2 - DATABASE_URL="postgres://user:password@host:port/db-name" 3 - 4 1 # Generated using `openssl rand -base64 32` 5 2 # Used to encrypt the DID stored in the cookies 6 3 ENCRYPTION_PASSWORD=<generated base 64 string here>
bun.lockb

This is a binary file and will not be displayed.

-14
drizzle.config.ts
··· 1 - import { defineConfig } from 'drizzle-kit'; 2 - if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set'); 3 - 4 - export default defineConfig({ 5 - schema: './src/lib/server/db/schema.ts', 6 - 7 - dbCredentials: { 8 - url: process.env.DATABASE_URL 9 - }, 10 - 11 - verbose: true, 12 - strict: true, 13 - dialect: 'postgresql' 14 - });
-11
drizzle/0000_slippery_sleepwalker.sql
··· 1 - CREATE TABLE "auth_session" ( 2 - "key" text PRIMARY KEY NOT NULL, 3 - "session" json NOT NULL, 4 - CONSTRAINT "auth_session_key_unique" UNIQUE("key") 5 - ); 6 - --> statement-breakpoint 7 - CREATE TABLE "auth_state" ( 8 - "key" text PRIMARY KEY NOT NULL, 9 - "state" json NOT NULL, 10 - CONSTRAINT "auth_state_key_unique" UNIQUE("key") 11 - );
-85
drizzle/meta/0000_snapshot.json
··· 1 - { 2 - "id": "77f27ea2-aa7a-4cfd-80b0-ecb2ea5647b1", 3 - "prevId": "00000000-0000-0000-0000-000000000000", 4 - "version": "7", 5 - "dialect": "postgresql", 6 - "tables": { 7 - "public.auth_session": { 8 - "name": "auth_session", 9 - "schema": "", 10 - "columns": { 11 - "key": { 12 - "name": "key", 13 - "type": "text", 14 - "primaryKey": true, 15 - "notNull": true 16 - }, 17 - "session": { 18 - "name": "session", 19 - "type": "json", 20 - "primaryKey": false, 21 - "notNull": true 22 - } 23 - }, 24 - "indexes": {}, 25 - "foreignKeys": {}, 26 - "compositePrimaryKeys": {}, 27 - "uniqueConstraints": { 28 - "auth_session_key_unique": { 29 - "name": "auth_session_key_unique", 30 - "nullsNotDistinct": false, 31 - "columns": [ 32 - "key" 33 - ] 34 - } 35 - }, 36 - "policies": {}, 37 - "checkConstraints": {}, 38 - "isRLSEnabled": false 39 - }, 40 - "public.auth_state": { 41 - "name": "auth_state", 42 - "schema": "", 43 - "columns": { 44 - "key": { 45 - "name": "key", 46 - "type": "text", 47 - "primaryKey": true, 48 - "notNull": true 49 - }, 50 - "state": { 51 - "name": "state", 52 - "type": "json", 53 - "primaryKey": false, 54 - "notNull": true 55 - } 56 - }, 57 - "indexes": {}, 58 - "foreignKeys": {}, 59 - "compositePrimaryKeys": {}, 60 - "uniqueConstraints": { 61 - "auth_state_key_unique": { 62 - "name": "auth_state_key_unique", 63 - "nullsNotDistinct": false, 64 - "columns": [ 65 - "key" 66 - ] 67 - } 68 - }, 69 - "policies": {}, 70 - "checkConstraints": {}, 71 - "isRLSEnabled": false 72 - } 73 - }, 74 - "enums": {}, 75 - "schemas": {}, 76 - "sequences": {}, 77 - "roles": {}, 78 - "policies": {}, 79 - "views": {}, 80 - "_meta": { 81 - "columns": {}, 82 - "schemas": {}, 83 - "tables": {} 84 - } 85 - }
-13
drizzle/meta/_journal.json
··· 1 - { 2 - "version": "7", 3 - "dialect": "postgresql", 4 - "entries": [ 5 - { 6 - "idx": 0, 7 - "version": "7", 8 - "when": 1758175146365, 9 - "tag": "0000_slippery_sleepwalker", 10 - "breakpoints": true 11 - } 12 - ] 13 - }
+1 -6
package.json
··· 7 7 "build": "vite build", 8 8 "preview": "vite preview", 9 9 "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 10 - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 11 - "db:push": "drizzle-kit push", 12 - "db:migrate": "drizzle-kit migrate", 13 - "db:studio": "drizzle-kit studio" 10 + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" 14 11 }, 15 12 "devDependencies": { 16 13 "@sveltejs/adapter-netlify": "^5.2.3", ··· 18 15 "@sveltejs/vite-plugin-svelte": "^6.2.1", 19 16 "@tailwindcss/typography": "^0.5.19", 20 17 "autoprefixer": "^10.4.21", 21 - "drizzle-kit": "^0.31.4", 22 18 "open-graph-scraper": "^6.11.0", 23 19 "svelte": "^5.39.6", 24 20 "svelte-check": "^4.3.2", ··· 33 29 "@tailwindcss/vite": "^4.1.13", 34 30 "@tanstack/svelte-query": "^6.0.9", 35 31 "@tanstack/svelte-query-devtools": "^6.0.3", 36 - "drizzle-orm": "^0.44.5", 37 32 "postgres": "^3.4.7", 38 33 "quickslice-client-js": "^0.3.0", 39 34 "runed": "^0.37.1",