Skip to content

Commit b5ab89b

Browse files
committed
chore(cleanup): remove redundant folders and unused environment variables
1 parent 6d65ffc commit b5ab89b

File tree

3 files changed

+1
-24
lines changed

3 files changed

+1
-24
lines changed

backend/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"dev": "tsx watch src/index.ts",
99
"build": "tsc",
10-
"start": "tsx src/index.ts",
11-
"db-generate": "prisma generate",
12-
"db-push": "prisma db push",
13-
"db-studio": "prisma studio"
10+
"start": "tsx src/index.ts"
1411
},
1512
"keywords": [],
1613
"author": "",

backend/prisma/schema.prisma

Lines changed: 0 additions & 15 deletions
This file was deleted.

backend/src/config/dotenv.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ export const SERVER_ENV = {
1111
LOCAL_HOST: process.env.LOCAL_HOST || "http://localhost:3001",
1212
CORS_ORIGIN: process.env.CORS_ORIGIN || "http://localhost:5173",
1313
};
14-
15-
export const DB_ENV = {
16-
DATABASE_URL: process.env.DATABASE_URL || "",
17-
};
18-
1914
export const MODEL_ENV = {
2015
OLLAMA_HOST: process.env.OLLAMA_HOST || "http://localhost:11434",
2116
MODEL_NAME: process.env.MODEL_NAME || "phi3:mini",

0 commit comments

Comments
 (0)