From a7ccd80d2a21b8fd7e49d4ac64649834925406cd Mon Sep 17 00:00:00 2001 From: iontalp Date: Sun, 9 Aug 2026 05:14:45 +0200 Subject: [PATCH] add test app and requirements --- app.py | 23 +++++++++++++++++++++++ requirements.txt | 1 + 2 files changed, 24 insertions(+) create mode 100644 app.py create mode 100644 requirements.txt diff --git a/app.py b/app.py new file mode 100644 index 0000000..16d2016 --- /dev/null +++ b/app.py @@ -0,0 +1,23 @@ +import streamlit as st + +st.set_page_config( + page_title="Python Web Test", + page_icon="🚀", + layout="centered" +) + +st.title("🚀 Python Web Test Sitesi") +st.write("Bu site **Code-Server** üzerinde yazıldı, **Gitea**'ya pushlandı ve **Coolify** ile yayına alındı!") + +st.divider() + +# Etkileşimli Test Elemanları +name = st.text_input("Adınızı girin:") +if name: + st.success(f"Harika! Hoş geldin **{name}**, sistem tıkır tıkır çalışıyor! 🎉") + +st.metric(label="Sunucu Durumu", value="Aktif / Online", delta="100% Uptime") + +if st.button("Bir mesaj bırak"): + st.balloons() + st.info("Test mesajı tetiklendi!") \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e251330 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +streamlit \ No newline at end of file