File tree 3 files changed +4
-12
lines changed
3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 1
1
NODE_ENV = dev
2
2
PORT = 3001
3
- DB_HOST = localhost
4
- DB_USER = c7f
5
- DB_PASSWORD = c7f
6
- DB_NAME = c7f
7
3
JWT_SECRET = secret
8
4
ALLOW_CORS = true
9
- ALLOWED_ORIGINS = http://localhost:3001,http://locahost:5000
5
+ ALLOWED_ORIGINS = http://localhost:3001,http://locahost:5000
6
+ DATABASE_URL = postgres://c7f:c7f@localhost:5432/c7f
Original file line number Diff line number Diff line change @@ -5,13 +5,7 @@ dotenv.config();
5
5
6
6
const config = {
7
7
client : 'postgres' ,
8
- connection : {
9
- host : process . env . DB_HOST || '127.0.0.1' ,
10
- port : parseInt ( process . env . DB_PORT , 10 ) || 5432 ,
11
- user : process . env . DB_USER || 'c7f' ,
12
- password : process . env . DB_PASSWORD || 'c7f' ,
13
- database : process . env . DB_NAME || 'c7f' ,
14
- } ,
8
+ connection : process . env . DATABASE_URL ,
15
9
} ;
16
10
17
11
export default config ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ knex.raw("SELECT 'test connection';").then(() => {
10
10
logger . info ( database . connectionSuccess ) ;
11
11
} ) . catch ( ( err ) => {
12
12
logger . error ( database . connectionFailure ) ;
13
+ process . exit ( 1 ) ;
13
14
throw err ;
14
15
} ) ;
15
16
You can’t perform that action at this time.
0 commit comments