mirror of
https://github.com/certd/certd.git
synced 2026-04-15 05:00:52 +08:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
|
|
const WebFramework = require('@midwayjs/koa').Framework;
|
||
|
|
const web = new WebFramework().configure({
|
||
|
|
port: 7001,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { Bootstrap } = require('@midwayjs/bootstrap');
|
||
|
|
Bootstrap.load(web).run();
|