fix: console command
This commit is contained in:
parent
6f7423037a
commit
820352f280
@ -3,16 +3,19 @@ import Application from '../application';
|
||||
const REPL = require('repl');
|
||||
|
||||
export default (app: Application) => {
|
||||
app.command('console').action(async () => {
|
||||
await app.start();
|
||||
const repl = (REPL.start('nocobase > ').context.app = app);
|
||||
repl.on('exit', async function (err) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
process.exit(1);
|
||||
}
|
||||
await app.stop();
|
||||
process.exit(0);
|
||||
app
|
||||
.command('console')
|
||||
.preload()
|
||||
.action(async () => {
|
||||
await app.start();
|
||||
const repl = (REPL.start('nocobase > ').context.app = app);
|
||||
repl.on('exit', async function (err) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
process.exit(1);
|
||||
}
|
||||
await app.stop();
|
||||
process.exit(0);
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
|
@ -11,9 +11,9 @@ import restart from './restart';
|
||||
import start from './start';
|
||||
import stop from './stop';
|
||||
import upgrade from './upgrade';
|
||||
|
||||
import consoleCommand from './console';
|
||||
export function registerCli(app: Application) {
|
||||
// console(app);
|
||||
consoleCommand(app);
|
||||
dbAuth(app);
|
||||
createMigration(app);
|
||||
dbClean(app);
|
||||
|
Loading…
Reference in New Issue
Block a user