| ''' | |
| toExecute: (from root app folder) ... streamlit run entry_streamlit.py | |
| ''' | |
| import streamlit as st | |
| #import uix.lit_sidebar as litSideBar | |
| #--- streamlit: specify title and logo | |
| st.set_page_config( | |
| page_title='Protoype - Fastapi with Streamlit Landing Page', | |
| #page_icon='https://cdn.freebiesupply.com/logos/thumbs/1x/nvidia-logo.png', | |
| layout="wide") | |
| st.header('\ | |
| Protoyping Fastapi and Streamlit \ | |
| on Docker \ | |
| within Huggingface space \ | |
| ') | |
| #st.markdown("##### Iain McKone (Deployment Lead) [LinkedIn](%s)" % "https://linkedin.com/in/iainmckone") | |
| st.markdown('---') | |
| #--- streamlit: add a sidebar | |
| #litSideBar.init() | |