Spaces:
Running
Running
tracinginsights
commited on
Commit
•
f877b1c
1
Parent(s):
47fabfe
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,18 @@ import os
|
|
3 |
import streamlit as st
|
4 |
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
GITHUB_PAT = os.environ['GITHUB']
|
7 |
|
8 |
if not os.path.exists('repo_directory'):
|
|
|
3 |
import streamlit as st
|
4 |
|
5 |
|
6 |
+
st.set_page_config(
|
7 |
+
page_title="TRACING INSIGHTS",
|
8 |
+
page_icon=None,
|
9 |
+
layout="wide",
|
10 |
+
initial_sidebar_state="expanded",
|
11 |
+
# menu_items={
|
12 |
+
# 'Get Help': 'https://www.extremelycoolapp.com/help',
|
13 |
+
# 'Report a bug': "https://www.extremelycoolapp.com/bug",
|
14 |
+
# 'About': "# This is a header. This is an *extremely* cool app!"
|
15 |
+
# }
|
16 |
+
)
|
17 |
+
|
18 |
GITHUB_PAT = os.environ['GITHUB']
|
19 |
|
20 |
if not os.path.exists('repo_directory'):
|