MusaR commited on
Commit
71b147b
·
verified ·
1 Parent(s): a8f86c4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ print("--- app.py: TOP OF FILE ---")
2
+ import streamlit as st
3
+ print("--- app.py: Streamlit imported ---")
4
+ import os
5
+ print("--- app.py: os imported ---")
6
+
7
+ st.set_page_config(page_title="Clean Slate Test", page_icon="🧼")
8
+ st.title("🧼 Clean Slate Test App")
9
+ st.write("If you see this, the basic Streamlit environment on a FRESH SPACE is working.")
10
+ print("--- app.py: Streamlit UI rendered ---")
11
+ print(f"CWD: {os.getcwd()}")
12
+ print("--- app.py: END OF FILE ---")