diff --git a/README.md b/README.md index bfcc8f0..0524f77 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ # 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 `/api/docs` or `/api/redoc` +# another section + +... + 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: diff --git a/frontend/main.py b/frontend/main.py index fdceefc..3de5080 100644 --- a/frontend/main.py +++ b/frontend/main.py @@ -7,8 +7,8 @@ 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_icon="🎈", + 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.")