From 590245dda6ea013de2baf01b0746898fd2a39e35 Mon Sep 17 00:00:00 2001 From: George Tay <73705042+asdfghjkxd@users.noreply.github.com> Date: Sat, 1 Jan 2022 17:47:32 +0800 Subject: [PATCH] Update Config for Streamlit This file is used to set the maximum file size and the overall theme of the Streamlit app. --- .streamlit/config.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .streamlit/config.toml diff --git a/.streamlit/config.toml b/.streamlit/config.toml new file mode 100644 index 0000000..b8141b6 --- /dev/null +++ b/.streamlit/config.toml @@ -0,0 +1,9 @@ +[global] +disableWatchdogWarning = true + +[server] +maxUploadSize = 1024000 + +[theme] +base = "light" +primaryColor = "#4FBBFF"