tachybase_todo/packages/api/bin/nocobase.js
2021-04-07 17:37:14 +08:00

14 lines
227 B
JavaScript

const keys = process.argv;
const key = keys.pop();
const dotenv = require('dotenv');
dotenv.config();
if (key === 'start') {
require('../lib/index');
} else if (key === 'db-init') {
require('../lib/migrations/init');
}