File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -45,28 +45,28 @@ const DB_SERVER_PROMPT_CHOICES = [
45
45
const DB_SERVER_ENV_VALUES = {
46
46
sqlite : { } ,
47
47
mysql : {
48
- MYSQL_HOST : 'localhost ' ,
48
+ MYSQL_HOST : '127.0.0.1 ' ,
49
49
MYSQL_PORT : 3306 ,
50
50
MYSQL_USER : 'lucid' ,
51
51
MYSQL_PASSWORD : '' ,
52
52
MYSQL_DB_NAME : 'lucid' ,
53
53
} ,
54
54
pg : {
55
- PG_HOST : 'localhost ' ,
55
+ PG_HOST : '127.0.0.1 ' ,
56
56
PG_PORT : 5432 ,
57
57
PG_USER : 'lucid' ,
58
58
PG_PASSWORD : '' ,
59
59
PG_DB_NAME : 'lucid' ,
60
60
} ,
61
61
oracle : {
62
- ORACLE_HOST : 'localhost ' ,
62
+ ORACLE_HOST : '127.0.0.1 ' ,
63
63
ORACLE_PORT : 1521 ,
64
64
ORACLE_USER : 'lucid' ,
65
65
ORACLE_PASSWORD : '' ,
66
66
ORACLE_DB_NAME : 'lucid' ,
67
67
} ,
68
68
mssql : {
69
- MSSQL_SERVER : 'localhost ' ,
69
+ MSSQL_SERVER : '127.0.0.1 ' ,
70
70
MSSQL_PORT : 1433 ,
71
71
MSSQL_USER : 'lucid' ,
72
72
MSSQL_PASSWORD : '' ,
@@ -93,7 +93,7 @@ function getDbDrivers(sink: typeof sinkStatic) {
93
93
. getPrompt ( )
94
94
. multiple ( 'Select the database driver you want to use' , DB_SERVER_PROMPT_CHOICES , {
95
95
validate ( choices ) {
96
- return choices && choices . length ? true : 'Select atleast one database driver to continue'
96
+ return choices && choices . length ? true : 'Select at least one database driver to continue'
97
97
} ,
98
98
} )
99
99
}
You can’t perform that action at this time.
0 commit comments