feat: 添加.env.local配置

This commit is contained in:
2025-11-07 15:03:00 +08:00
parent 3d1c4853ce
commit 0f1f775605
2 changed files with 7 additions and 10 deletions

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 ║
╚════════════════════════════════════════════════════════╝
`);
});