Babu Pallam commited on
Commit
c9986b1
·
1 Parent(s): 24261f4

chore(streamlit): configure production-safe streamlit settings

Browse files
Files changed (1) hide show
  1. .streamlit/config.toml +20 -0
.streamlit/config.toml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ============================================================
2
+ # FILE: .streamlit/config.toml
3
+ # ============================================================
4
+ # PURPOSE:
5
+ # Disable Streamlit file watcher to avoid scanning transformers modules.
6
+ #
7
+ # AI ENGINEER NOTE:
8
+ # In Docker demos, disabling file watching is usually fine.
9
+ # If you edit code, restart the container manually.
10
+ # ============================================================
11
+
12
+ [server]
13
+ fileWatcherType = "none"
14
+ runOnSave = false
15
+ address = "0.0.0.0"
16
+ port = 8501
17
+ headless = true
18
+
19
+ [browser]
20
+ gatherUsageStats = false