Compare commits

..

2 Commits

Author SHA1 Message Date
230191f181 Merge remote-tracking branch 'origin/master'
# Conflicts:
#	utils/config.ts
2025-11-07 15:04:20 +08:00
0f1f775605 feat: 添加.env.local配置 2025-11-07 15:03:00 +08:00

View File

@@ -101,11 +101,11 @@ app.get('/health', (req, res) => {
app.listen(PORT, () => {
console.log(`
╔════════════════════════════════════════════════════════╗
🚀 Proxy Server Running ║
║ Proxy Server Running
╠════════════════════════════════════════════════════════╣
║ Local: http://localhost:${PORT}
║ Target: ${API_TARGET.padEnd(40)}
║ Health: http://localhost:${PORT}/health
║ Local: http://localhost:${PORT}
║ Target: ${API_TARGET.padEnd(40)}
║ Health: http://localhost:${PORT}/health ║
╚════════════════════════════════════════════════════════╝
`);
});