Skip to content

Commit

Permalink
update host number
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPdeS committed Dec 14, 2024
1 parent 9474cfd commit 71451dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions PyMieSim/_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ def run(self):
This method starts the Dash server and opens the application in the default web browser.
"""
webbrowser.open("http://127.0.0.1:8050/", new=2)
self.app.run_server(debug=True)
# webbrowser.open("http://127.0.0.1:8050/", new=2)
# webbrowser.open("http://0.0.0.1:8050/", new=2)
self.app.run_server(debug=True, host="0.0.0.0", port=8050)


if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions PyMieSim/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '3.0.1'
__version_tuple__ = version_tuple = (3, 0, 1)
__version__ = version = '3.1.0.1'
__version_tuple__ = version_tuple = (3, 1, 0, 1)

0 comments on commit 71451dc

Please sign in to comment.