interactive intro to open social at-me.zzstoatzz.io

fix: bind to 0.0.0.0 for docker deployment

binding to 127.0.0.1 only accepts localhost connections,
which doesn't work in containerized environments

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+1 -1
+1 -1
src/main.rs
··· 35 35 .service(routes::logout) 36 36 .service(routes::restore_session) 37 37 }) 38 - .bind(("127.0.0.1", 8080))? 38 + .bind(("0.0.0.0", 8080))? 39 39 .run() 40 40 .await 41 41 }