mirror of
https://github.com/nocobase/nocobase
synced 2024-11-18 08:17:00 +00:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import { Application } from '@nocobase/server';
|
|
import config from './config';
|
|
|
|
const app = new Application(config);
|
|
|
|
if (require.main === module) {
|
|
app.runAsCLI();
|
|
}
|
|
|
|
export default app;
|