Skip to content

Instantly share code, notes, and snippets.

View bullet-ant's full-sized avatar
:shipit:
Inspecting elements

Aman Kumar bullet-ant

:shipit:
Inspecting elements
View GitHub Profile
@bullet-ant
bullet-ant / app.py
Last active March 15, 2025 02:44
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}")