Add an .env.example file and provide more detailed instructions.

This commit is contained in:
jinhui.li
2025-03-01 23:12:31 +08:00
parent 492115fdf7
commit 5ef624a1ac
6 changed files with 57 additions and 4 deletions

View File

@@ -321,7 +321,7 @@ async function initializeClaudeConfig() {
async function run() {
await initializeClaudeConfig();
app.listen(port, () => {
app.listen(port, "127.0.0.1", () => {
console.log(`Example app listening on port ${port}`);
});
}