2021-03-19 11:50:25 +01:00
|
|
|
#!/usr/bin/env node
|
2023-05-02 17:22:43 +02:00
|
|
|
process.env.DISABLE_PINO_LOGGER = "1"
|
2023-03-02 19:21:45 +01:00
|
|
|
import "./prebuilds"
|
|
|
|
import "./environment"
|
2023-05-02 17:22:43 +02:00
|
|
|
import { env } from "@budibase/backend-core"
|
2023-03-02 19:21:45 +01:00
|
|
|
import { getCommands } from "./options"
|
|
|
|
import { Command } from "commander"
|
|
|
|
import { getHelpDescription } from "./utils"
|
2021-02-24 18:32:45 +01:00
|
|
|
|
2021-02-25 15:42:50 +01:00
|
|
|
// add hosting config
|
2021-02-26 12:46:48 +01:00
|
|
|
async function init() {
|
2021-02-25 15:42:50 +01:00
|
|
|
const program = new Command()
|
2021-02-26 12:46:48 +01:00
|
|
|
.addHelpCommand("help", getHelpDescription("Help with Budibase commands."))
|
|
|
|
.helpOption(false)
|
2023-04-17 14:53:00 +02:00
|
|
|
.version(env.VERSION)
|
2021-02-26 12:46:48 +01:00
|
|
|
// add commands
|
|
|
|
for (let command of getCommands()) {
|
|
|
|
command.configure(program)
|
2021-02-25 15:42:50 +01:00
|
|
|
}
|
2021-02-26 12:46:48 +01:00
|
|
|
// this will stop the program if no command found
|
|
|
|
await program.parseAsync(process.argv)
|
2021-02-25 15:42:50 +01:00
|
|
|
}
|
2021-02-26 12:46:48 +01:00
|
|
|
|
2021-05-04 12:32:22 +02:00
|
|
|
init().catch(err => {
|
2021-02-26 12:46:48 +01:00
|
|
|
console.error(`Unexpected error - `, err)
|
|
|
|
})
|