Skip to content

Commit

Permalink
update db_config_sample.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChickenSellerRED committed Mar 11, 2024
1 parent c20f566 commit ff9af59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions conf/db_config_sample.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
database_number: 0
database_number: 1

database1:
nickname: 'local db'
dbms: 'postgresql'
host: db # '35.235.95.37' # Replace with your DB host
port: 5432 # 5439 # Replace with your DB port
user: 'admin'# 'jize' # Replace with your DB username
host: db
port: 5432
user: 'admin'
password: 'admin'
2 changes: 1 addition & 1 deletion page/import_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def import_page():

col1, col2 = st.columns([2,5])
with col1:
selected_db_server = st.selectbox("**Select a database server**", get_existing_database_server()).split(' (')[0]
selected_db_server = st.selectbox("**Select a database server**", get_existing_database_server())
with col2:
new_db_name = st.text_input("Enter new w4h database instance name")
if st.button("Create"):
Expand Down

0 comments on commit ff9af59

Please sign in to comment.