加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 871 Bytes
一键复制 编辑 原始数据 按行查看 历史
peak xiong 提交于 2024-10-21 17:55 . first commit
import Koa from "koa";
import bodyParser from "koa-bodyparser";
import router from "./routes/index.js";
import { connectDB, syncModels } from "./config/db.js";
import { setupSwagger } from "./config/swagger.js";
import dotenv from "dotenv";
dotenv.config();
const app = new Koa();
// 使用 bodyParser 中间件来处理 JSON 请求体
app.use(bodyParser());
// 初始化路由
app.use(router.routes());
// 连接数据库
connectDB();
// 同步数据库模型
syncModels();
// 如果启用了 Swagger UI,则设置 Swagger
if (process.env.ENABLE_SWAGGER === "true") {
setupSwagger(app);
}
// 处理未匹配的路由,返回 404
app.use(async (ctx) => {
ctx.status = 404;
ctx.body = { message: "404 Not Found" };
});
// 启动服务器
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化