refactor: 重构数据库配置为SQLite开发环境并移除冗余文档

This commit is contained in:
2025-09-21 15:16:48 +08:00
parent d207610009
commit 3c8648a635
259 changed files with 88239 additions and 8379 deletions

14
test-server.js Normal file
View File

@@ -0,0 +1,14 @@
const express = require('express');
const app = express();
const PORT = 3000;
app.get('/', (req, res) => {
res.json({
message: '测试服务器运行正常',
timestamp: new Date().toISOString()
});
});
app.listen(PORT, () => {
console.log(`测试服务器正在端口 ${PORT} 上运行`);
});