Skip to content

Commit a5004fe

Browse files
committed
Merge branch 'dev' of github.com:C7F/C7F-Backend into dev
2 parents f68e7d4 + 06bc47b commit a5004fe

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

sample.env

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
NODE_ENV=dev
22
PORT=3001
3-
DB_HOST=localhost
4-
DB_USER=c7f
5-
DB_PASSWORD=c7f
6-
DB_NAME=c7f
73
JWT_SECRET=secret
84
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

src/knexfile.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@ dotenv.config();
55

66
const config = {
77
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,
159
};
1610

1711
export default config;

src/models/db.ts

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ knex.raw("SELECT 'test connection';").then(() => {
1010
logger.info(database.connectionSuccess);
1111
}).catch((err) => {
1212
logger.error(database.connectionFailure);
13+
process.exit(1);
1314
throw err;
1415
});
1516

0 commit comments

Comments
 (0)