MVPilgrim commited on
Commit
9864c20
·
1 Parent(s): 533e89e

Copy .streamlit/main.css.

Browse files
Files changed (2) hide show
  1. semsearch.py +1 -1
  2. startup.sh +1 -0
semsearch.py CHANGED
@@ -36,7 +36,7 @@ def load_css(file_name):
36
  st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
37
 
38
  # Load the custom CSS
39
- load_css("./.streamlit/main.css")
40
 
41
  st.markdown("<h1 style='text-align: center; color: #666666;'>Vector Database RAG Proof of Concept</h1>", unsafe_allow_html=True)
42
  st.markdown("<h6 style='text-align: center; color: #666666;'>V1</h6>", unsafe_allow_html=True)
 
36
  st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
37
 
38
  # Load the custom CSS
39
+ load_css(".streamlit/main.css")
40
 
41
  st.markdown("<h1 style='text-align: center; color: #666666;'>Vector Database RAG Proof of Concept</h1>", unsafe_allow_html=True)
42
  st.markdown("<h6 style='text-align: center; color: #666666;'>V1</h6>", unsafe_allow_html=True)
startup.sh CHANGED
@@ -1,6 +1,7 @@
1
  #! /bin/bash
2
 
3
  echo "#### startup.sh entered."
 
4
  echo "### df -h"; df -h
5
  echo "### ls -al /app"; ls -al /app
6
  echo "### ls -al /app/.streamlit/main.css"; ls -al /app/.streamlit/main.css
 
1
  #! /bin/bash
2
 
3
  echo "#### startup.sh entered."
4
+ echo "### pwd "; pwd
5
  echo "### df -h"; df -h
6
  echo "### ls -al /app"; ls -al /app
7
  echo "### ls -al /app/.streamlit/main.css"; ls -al /app/.streamlit/main.css