@@ -3,6 +3,7 @@ import * as dotenv from 'dotenv';
3
3
import * as fs from 'fs' ;
4
4
import { exec } from 'child_process' ;
5
5
import { buildAndValidateDatabaseConfig } from './database-config-utils' ;
6
+ import { isEmpty } from 'lodash' ;
6
7
7
8
function createDatabaseFromFile ( envPath : string ) : void {
8
9
const result = dotenv . config ( { path : envPath } ) ;
@@ -26,6 +27,11 @@ function createDatabase(): void {
26
27
throw new Error ( `Config validation error: ${ error . message } ` ) ;
27
28
}
28
29
30
+ if ( envVars . PG_DB_OWNER === 'false' ) {
31
+ console . log ( 'Skipping database creation' ) ;
32
+ return ;
33
+ }
34
+
29
35
const connectivityCheck = exec ( 'command -v createdb' ) ;
30
36
31
37
connectivityCheck . on ( 'exit' , function ( signal ) {
@@ -35,28 +41,37 @@ function createDatabase(): void {
35
41
}
36
42
} ) ;
37
43
38
- if ( envVars . PG_DB_OWNER === 'false' ) {
39
- console . log ( 'Skipping database creation' ) ;
40
- return ;
44
+ // Allow creating db based on cmd line arg
45
+ const dbNameFromArg = process . argv [ 2 ] ;
46
+ if ( dbNameFromArg ) return createDb ( envVars , dbNameFromArg ) ;
47
+
48
+ createDb ( envVars , envVars . PG_DB ) ;
49
+ if ( process . env . ENABLE_TOOLJET_DB == 'true' ) {
50
+ createDb ( envVars , envVars . TOOLJET_DB ) ;
41
51
}
52
+ }
53
+
54
+ function createDb ( envVars , dbName ) {
55
+ if ( isEmpty ( dbName ) ) throw 'Database name cannot be empty' ;
42
56
43
57
const createdb =
44
58
`PGPASSWORD="${ envVars . PG_PASS } " createdb ` +
45
59
`-h ${ envVars . PG_HOST } ` +
46
60
`-p ${ envVars . PG_PORT } ` +
47
61
`-U ${ envVars . PG_USER } ` +
48
- envVars . PG_DB ;
62
+ dbName ;
49
63
50
64
exec ( createdb , ( err , _stdout , _stderr ) => {
51
65
if ( ! err ) {
52
- console . log ( `Created database ${ envVars . PG_DB } ` ) ;
66
+ console . log ( `Created database ${ dbName } ` ) ;
53
67
return ;
54
68
}
55
69
56
- const errorMessage = `database "${ envVars . PG_DB } " already exists` ;
70
+ const errorMessage = `database "${ dbName } " already exists` ;
57
71
58
72
if ( err . message . includes ( errorMessage ) ) {
59
- console . log ( `Using database: ${ envVars . PG_DB } ` ) ;
73
+ envVars . PG_DB == dbName && console . log ( `Using PG_DB: ${ dbName } ` ) ;
74
+ envVars . TOOLJET_DB == dbName && console . log ( `Using TOOLJET_DB: ${ dbName } ` ) ;
60
75
} else {
61
76
console . error ( err ) ;
62
77
process . exit ( 1 ) ;
@@ -74,6 +89,5 @@ if (fs.existsSync(nodeEnvPath)) {
74
89
createDatabaseFromFile ( fallbackPath ) ;
75
90
} else {
76
91
console . log ( 'Picking up config from the environment' ) ;
77
-
78
92
createDatabase ( ) ;
79
93
}
0 commit comments