Sam0398 commited on
Commit
f563244
·
verified ·
1 Parent(s): e930f2e
Files changed (1) hide show
  1. streamlit.py +15 -0
streamlit.py CHANGED
@@ -3,6 +3,21 @@ import polars as pl
3
  import plotly.express as px
4
  from great_tables import GT
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  st.title(" App Is Running!")
8
  st.write("If you see this, the app is launching correctly. Now we’ll debug below.")
 
3
  import plotly.express as px
4
  from great_tables import GT
5
 
6
+ import streamlit as st
7
+
8
+ st.set_page_config(page_title="Test App", layout="wide")
9
+
10
+ st.title("🚀 Hello from Sam Anderson's Streamlit App")
11
+ st.write("✅ The app launched successfully on Hugging Face!")
12
+
13
+ # Minimal placeholder content
14
+ with st.expander("Next steps"):
15
+ st.markdown("""
16
+ - ✅ Now that it works, you can uncomment your data loading lines
17
+ - 🧠 Add store-level filters and plots again
18
+ - 🪄 Make sure at least one thing shows immediately when the app starts
19
+ """)
20
+ ##############
21
 
22
  st.title(" App Is Running!")
23
  st.write("If you see this, the app is launching correctly. Now we’ll debug below.")