Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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 ---")
|