added back-end call for edit

This commit is contained in:
JBB0807 2025-05-05 22:21:24 -07:00
parent ad50756440
commit 5a79b9970b
5 changed files with 209 additions and 63 deletions

View file

@ -71,4 +71,4 @@ app.get("/notebook/:appName", async (req, res) => {
});
const port = process.env.NODE_PORT || 8080;
app.listen(port, "::", () => console.log(`Listening on :::${port}...`));
app.listen({ port: port, host: '::', ipv6Only: false }, () => console.log(`Listening on ${port}...`));