Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

from frontend.st_utils import auth_system

# add dashboard version here
ver="2.0.1"
st.set_page_config(
layout='centered',
page_title='hummingbot dashboard version',
menu_items={
'about': f'''**🚀 Hummingbot Dashboard {ver}**
https://github.com/hummingbot/dashboard/releases
'''
}
)

def main():
# readme section
Expand All @@ -19,6 +30,7 @@ def main():
st.write(
"If you encounter any bugs or have suggestions for improvement, please create an issue in the "
"[hummingbot dashboard github](https://github.com/hummingbot/dashboard).")



auth_system()
Expand Down