Skip to content

Commit

Permalink
Made changes to db credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeshkatakam committed May 29, 2024
1 parent 8cad9ff commit d7bc5e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/api/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

# Database Related configs:

db_host = 'db-mysql-cluster-trimx-do-user-15662268-0.c.db.ondigitalocean.com'
db_user = 'doadmin'
db_host = 'db_host'
db_user = 'db_admin'
db_pass = 'passwd' # Enter Password here
db_name = 'test'
db_port = '25060'
db_name = 'db_test'
db_port = 'port_no'



Expand Down
2 changes: 1 addition & 1 deletion src/api/streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import time

st.title("Real Time Face Recognition System Live Demo")

#TODO: Fix Streamlit APP for Face Recognition

# Page for user registration form
def registration_page():
Expand Down

0 comments on commit d7bc5e7

Please sign in to comment.