gancio-upstream/server/cli.js

39 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-10-21 16:18:58 +02:00
#!/usr/bin/env node
const pkg = require('../package.json')
const path = require('path')
2022-03-11 11:34:14 +01:00
const accountsCLI = require('./cli/accounts')
2021-10-21 16:18:58 +02:00
2021-10-21 20:49:49 +02:00
process.env.cwd = process.env.GANCIO_DATA || path.resolve('./')
2021-10-21 16:18:58 +02:00
process.chdir(path.resolve(__dirname, '..'))
async function start () {
require('@nuxt/cli-edge').run(['start', '--modern'])
.catch((error) => {
console.error(error)
process.exit(2)
})
}
2021-10-25 11:05:29 +02:00
console.info(`📅 ${pkg.name} - v${pkg.version} - ${pkg.description} (nodejs: ${process.version})`)
2021-10-21 16:18:58 +02:00
require('yargs')
.usage('Usage $0 <command> [options]')
.option('config', {
alias: 'c',
describe: 'Configuration file',
2022-05-05 16:01:39 +02:00
default: path.resolve(process.env.cwd, 'config.json'),
coerce: config_path => {
const absolute_config_path = path.resolve(process.env.cwd, config_path)
process.env.config_path = absolute_config_path
return absolute_config_path
}})
2021-10-21 16:18:58 +02:00
.command(['start', 'run', '$0'], 'Start gancio', {}, start)
2022-06-06 16:56:24 +02:00
.command(['accounts'], 'Manage accounts', accountsCLI)
2021-10-21 16:18:58 +02:00
.help('h')
.alias('h', 'help')
.epilog('Made with ❤ by underscore hacklab - https://gancio.org')
2022-05-05 16:01:39 +02:00
.recommendCommands()
.demandCommand(1, '')
2021-10-21 16:18:58 +02:00
.argv