James Edmunds commited on
Commit
3ee10af
·
1 Parent(s): 588b169

test: Simplify to bare minimum Streamlit setup

Browse files
Files changed (3) hide show
  1. .streamlit/config.toml +2 -14
  2. README.md +1 -2
  3. app.py +2 -8
.streamlit/config.toml CHANGED
@@ -1,16 +1,4 @@
1
- [theme]
2
- primaryColor = "#F63366"
3
- backgroundColor = "#FFFFFF"
4
- secondaryBackgroundColor = "#F0F2F6"
5
- textColor = "#262730"
6
- font = "sans serif"
7
-
8
- [logger]
9
- level = "debug"
10
- messageFormat = "%(asctime)s %(levelname)s: %(message)s"
11
-
12
  [server]
13
- enableXsrfProtection = false
14
  enableCORS = false
15
- runOnSave = true
16
- port = 8501
 
 
 
 
 
 
 
 
 
 
 
 
1
  [server]
2
+ port = 8501
3
  enableCORS = false
4
+ enableXsrfProtection = false
 
README.md CHANGED
@@ -4,10 +4,9 @@ emoji: 🎵
4
  colorFrom: indigo
5
  colorTo: purple
6
  sdk: streamlit
7
- sdk_version: 1.32.0
8
  app_file: app.py
9
  pinned: false
10
- python_version: "3.11"
11
  ---
12
 
13
  # SongLift LyrGen2
 
4
  colorFrom: indigo
5
  colorTo: purple
6
  sdk: streamlit
7
+ sdk_version: 1.25.0
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
  # SongLift LyrGen2
app.py CHANGED
@@ -1,11 +1,5 @@
1
  """Main Streamlit application for lyric generation."""
2
  import streamlit as st
3
 
4
- st.set_page_config(
5
- page_title="SongLift LyrGen",
6
- page_icon="🎵",
7
- layout="wide"
8
- )
9
-
10
- st.title("SongLift LyrGen - Test Page")
11
- st.write("If you can see this, Streamlit is working!")
 
1
  """Main Streamlit application for lyric generation."""
2
  import streamlit as st
3
 
4
+ st.title("Test App")
5
+ st.write("Hello, World!")