Last active
March 15, 2025 02:44
-
-
Save bullet-ant/7a2ab073743493960749116487da967f to your computer and use it in GitHub Desktop.
Simple Streamlit app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| st.title("Streamlit with Nginx Reverse Proxy") | |
| st.write("This app is being served through Nginx at a custom URL path!") | |
| # Add some example content | |
| st.header("Sample Interactive Elements") | |
| slider_value = st.slider("Select a value", 0, 100, 50) | |
| st.write(f"You selected: {slider_value}") | |
| if st.button("Click me!"): | |
| st.success("Button clicked!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment