add test app and requirements

This commit is contained in:
2026-08-09 05:14:45 +02:00
parent 7a9ff18fbd
commit a7ccd80d2a
2 changed files with 24 additions and 0 deletions
+23
View File
@@ -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!")
+1
View File
@@ -0,0 +1 @@
streamlit