Commit ·
fcf3d5f
1
Parent(s): dfaede7
Check for secrets using code
Browse files- src/streamlit_app.py +1 -0
src/streamlit_app.py
CHANGED
|
@@ -25,6 +25,7 @@ from PIL import Image
|
|
| 25 |
import streamlit as st
|
| 26 |
from streamlit_webrtc import VideoProcessorBase, webrtc_streamer, RTCConfiguration
|
| 27 |
|
|
|
|
| 28 |
account_sid = st.secrets.get("ACCOUNT_SID")
|
| 29 |
auth_token = st.secrets.get("AUTH_TOKEN")
|
| 30 |
if account_sid and auth_token:
|
|
|
|
| 25 |
import streamlit as st
|
| 26 |
from streamlit_webrtc import VideoProcessorBase, webrtc_streamer, RTCConfiguration
|
| 27 |
|
| 28 |
+
print("Secrets:", st.secrets.items())
|
| 29 |
account_sid = st.secrets.get("ACCOUNT_SID")
|
| 30 |
auth_token = st.secrets.get("AUTH_TOKEN")
|
| 31 |
if account_sid and auth_token:
|