1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

Logging and adding better messaging around startup.

This commit is contained in:
mike12345567 2021-05-24 14:58:54 +01:00
parent 4b786f51d2
commit b7f739d54a

View file

@ -101,10 +101,11 @@ async function init(type) {
async function start() {
await checkDockerConfigured()
checkInitComplete()
console.log(info("Starting services, this may take a moment."))
console.log(info("Starting services, this may take a moment - first time this may take a few minutes to download images."))
const port = makeEnv.get("MAIN_PORT")
await handleError(async () => {
await compose.upAll({ cwd: "./", log: false })
// need to log as it makes it more clear
await compose.upAll({ cwd: "./", log: true })
})
console.log(
success(