refactor: 重构数据库配置为SQLite开发环境并移除冗余文档
This commit is contained in:
14
test-server.js
Normal file
14
test-server.js
Normal 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} 上运行`);
|
||||
});
|
||||
Reference in New Issue
Block a user