selfhostable, read-only reddit client
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

use 0.0.0.0 instead of loopback

Akshay 73719875 b388435c

+2 -2
+2 -2
src/index.js
··· 29 29 app.use("/", routes); 30 30 31 31 const port = process.env.LURKER_PORT; 32 - const server = app.listen(port ? port : 3000, () => { 33 - console.log(`started on ${server.address().port}`); 32 + const server = app.listen(port ? port : 3000, "0.0.0.0", () => { 33 + console.log("started on", server.address()); 34 34 });