From bda1c19be15f5e7e5e684e1a38954f2d4b76c2ff Mon Sep 17 00:00:00 2001 From: Jan-David Wiederstein Date: Thu, 12 Jun 2025 19:18:23 +0000 Subject: [PATCH 1/5] demo preview deployment --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index bfcc8f0..a6aee57 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,7 @@ before running any stage you will need to set up a 'CS_TOKEN' env var containing `/api/docs` or `/api/redoc` +# another section + +... + From 99b228d321039a4c076f6467eb086322aa8deb9b Mon Sep 17 00:00:00 2001 From: Jan-David Wiederstein Date: Thu, 12 Jun 2025 19:23:56 +0000 Subject: [PATCH 2/5] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6aee57..0524f77 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # python-demo test -before running any stage you will need to set up a 'CS_TOKEN' env var containing an Codesphere API key. +before running any stage you will need to set up a 'CS_TOKEN' env var containing a Codesphere API key. # open backend api docs From 31994683d8c3c16f151651bfd0b96473236565bc Mon Sep 17 00:00:00 2001 From: "walz.ph" Date: Fri, 13 Jun 2025 07:06:03 +0200 Subject: [PATCH 3/5] increase replica --- ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.yml b/ci.yml index 66d4bd9..0b569b9 100644 --- a/ci.yml +++ b/ci.yml @@ -44,7 +44,7 @@ run: command: . ./env && cd backend && uv run uvicorn app:app --port 3000 --host 0.0.0.0 --workers 2 plan: 8 - replicas: 1 + replicas: 2 isPublic: false api-docs: steps: From 0444cb3235a926dfb286006500314b2503faaaa4 Mon Sep 17 00:00:00 2001 From: "walz.ph" Date: Fri, 13 Jun 2025 07:09:20 +0200 Subject: [PATCH 4/5] update title icon --- frontend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/main.py b/frontend/main.py index fdceefc..090a2a8 100644 --- a/frontend/main.py +++ b/frontend/main.py @@ -8,7 +8,7 @@ st.set_page_config( page_title="Streamlit Demo", - page_icon="🎈", + page_icon="🎉", layout="wide" ) From f05aff3b8a5b5ffa038ffd7cc3438647730772d5 Mon Sep 17 00:00:00 2001 From: "walz.ph" Date: Fri, 13 Jun 2025 11:25:13 +0200 Subject: [PATCH 5/5] change title --- frontend/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/main.py b/frontend/main.py index 090a2a8..3de5080 100644 --- a/frontend/main.py +++ b/frontend/main.py @@ -7,7 +7,7 @@ API_URL = f"http://ws-server-{os.getenv('WORKSPACE_ID', 123456)}-backend.workspaces:3000/api/data" st.set_page_config( - page_title="Streamlit Demo", + page_title="Porsche Demo", page_icon="🎉", layout="wide" ) @@ -42,7 +42,7 @@ def fetch_data(url: str, points: int): return pd.DataFrame() -st.header(f"Interactive {chart_type}") +st.header(f"Mein neues {chart_type}") st.write(f"Displaying a chart with {num_points} random data points.")