We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3491c31 + 799d3c4 commit 8bb3693Copy full SHA for 8bb3693
2 files changed
apps/chaingraph-backend/.env.example
@@ -5,7 +5,7 @@ TRPC_SERVER_HOST=localhost
5
TRPC_SERVER_PORT=3001
6
7
# Database Configuration
8
-DATABASE_URL=postgres://postgres@postgres@127.0.0.1:5431/postgres?sslmode=disable
+DATABASE_URL=postgres://postgres:postgres@127.0.0.1:5431/postgres?sslmode=disable
9
10
# Authentication Configuration
11
AUTH_ENABLED=true
packages/chaingraph-trpc/server/drizzle.config.ts
@@ -13,7 +13,7 @@ import * as dotenv from 'dotenv'
13
import { defineConfig } from 'drizzle-kit'
14
15
// Check if .env file exists before trying to load it
16
-const envPath = path.resolve(__dirname, '../../.env')
+const envPath = path.resolve(__dirname, '../../../.env')
17
const envExists = fs.existsSync(envPath)
18
19
if (envExists) {
0 commit comments