Skip to content

Commit

Permalink
😩
Browse files Browse the repository at this point in the history
  • Loading branch information
gruselhaus committed Sep 28, 2019
1 parent 8b627dc commit 5f6b0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/parteiduell_backend.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ run() async {
var port = portEnv == null ? 3000 : int.parse(portEnv);

// Starten des Servers
var server = await HttpServer.bind("127.0.0.1", port);
var server = await HttpServer.bind('0.0.0.0', port);

print("Serving at ${server.address}:${server.port}");

Expand Down

0 comments on commit 5f6b0af

Please sign in to comment.