hotchpotch commited on
Commit
687a044
1 Parent(s): 8e1c5c0
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,4 +1,7 @@
1
  import streamlit as st
 
2
 
3
- x = st.slider("Select a value")
4
- st.write(x, "squared is", x * x)
 
 
 
1
  import streamlit as st
2
+ import os
3
 
4
+ # 環境変数全てを整形して表示
5
+ all_env_dict = os.environ
6
+ for key in all_env_dict.keys():
7
+ st.write(f"{key}: {all_env_dict[key]}")