Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat / add dashboard version #177

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
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