Skip to content

Instantly share code, notes, and snippets.

@bullet-ant
Last active March 15, 2025 02:44
Show Gist options
  • Select an option

  • Save bullet-ant/7a2ab073743493960749116487da967f to your computer and use it in GitHub Desktop.

Select an option

Save bullet-ant/7a2ab073743493960749116487da967f to your computer and use it in GitHub Desktop.
Simple Streamlit app
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