Skip to content

Commit

Permalink
add python version log
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolivierarsenault committed Aug 15, 2024
1 parent d849410 commit b770296
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""
Tenut
"""

import tefnut.webui.webservice as webservice
import platform


def start_server():
Expand All @@ -15,6 +17,7 @@ def start_server():

if __name__ == "__main__":
print("===========Starting up Tefnut for vscode=============")
print(f"Python Version: {platform.python_version()}")
webservice.app.run(
use_debugger=False, use_reloader=False, passthrough_errors=True, host="0.0.0.0"
)

0 comments on commit b770296

Please sign in to comment.