Browse Source

fix(env): comment out DATABASE_URL in .env and move it to the end of .env.local

vtugulan 6 months ago
parent
commit
6f6370b7ce
2 changed files with 5 additions and 2 deletions
  1. 1 1
      .env
  2. 4 1
      .env.local

+ 1 - 1
.env

@@ -1,5 +1,5 @@
 # PostgreSQL Database Configuration
-DATABASE_URL="postgresql://postgres:postgres@localhost:5432/vtorio?schema=public"
+#DATABASE_URL="postgresql://postgres:postgres@localhost:5432/vtorio?schema=public"
 
 # Project Root Path (for legacy file system operations)
 ROOT_PATH="c:/Source/gogs/vtorio"

+ 4 - 1
.env.local

@@ -3,4 +3,7 @@ KINDE_CLIENT_ID=1863d3d354784c89a480e86410f23ea5
 KINDE_CLIENT_SECRET=OGwKvav8cRbKUNhaZup3aOmO3G4LP1Z4DIBsbXxcEShUcHAAPPLe
 KINDE_ISSUER_URL=https://vtorio.kinde.com
 KINDE_SITE_URL=http://localhost:3000
-KINDE_POST_LOGOUT_REDIRECT_URL=http://localhost:3000
+KINDE_POST_LOGOUT_REDIRECT_URL=http://localhost:3000
+
+# PostgreSQL Database Configuration
+DATABASE_URL="postgresql://postgres:postgres@localhost:5432/vtorio?schema=public"