@dnax/core 0.69.3 ā 0.69.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/index.ts +0 -25
- package/package.json +1 -1
package/app/index.ts
CHANGED
|
@@ -115,31 +115,6 @@ async function runApp(config?: configRunApp, clb?: Function): Promise<Server> {
|
|
|
115
115
|
})
|
|
116
116
|
);
|
|
117
117
|
|
|
118
|
-
console.log(
|
|
119
|
-
"\n---------------------------------------".gray +
|
|
120
|
-
"\n⨠Your server is up and running\n".green.bold +
|
|
121
|
-
"---------------------------------------\n".gray +
|
|
122
|
-
`š Pid : ${process.pid}`.gray.bold +
|
|
123
|
-
`\n` +
|
|
124
|
-
`š¢ Version : ${pkg.version}`.gray.bold +
|
|
125
|
-
`\n\n` +
|
|
126
|
-
`āļø Environment : ${
|
|
127
|
-
process.env.NODE_ENV || envName || "development"
|
|
128
|
-
}\n`.gray.bold +
|
|
129
|
-
`š Started at : ${new Date().toLocaleString()}\n`.gray.bold +
|
|
130
|
-
`\n` +
|
|
131
|
-
`š Server : ${serverName}`.gray.bold +
|
|
132
|
-
`\n` +
|
|
133
|
-
`š Url : http://localhost:${PORT}\n\n`.gray.bold +
|
|
134
|
-
`Tenants :`.gray.underline.bold +
|
|
135
|
-
`\n` +
|
|
136
|
-
Cfg.tenants?.map((t: any) => {
|
|
137
|
-
return `\n${t?.name?.blue || "_"} : ${t?.id?.green}`.bold;
|
|
138
|
-
}) +
|
|
139
|
-
`\n\n` +
|
|
140
|
-
`---------------------------------------\n`.gray
|
|
141
|
-
);
|
|
142
|
-
|
|
143
118
|
if (clb) clb();
|
|
144
119
|
|
|
145
120
|
//AfterStart
|