lenawilli commited on
Commit
6a16c7d
·
verified ·
1 Parent(s): 85ee116

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -96,8 +96,8 @@ st.set_page_config(page_title="GDPR Compliance Checker", layout="wide")
96
  st.title("🛡️ GDPR Compliance Checker")
97
 
98
  # Fixe Dateipfade
99
- gdpr_path = "gdpr_articles_baseline.json"
100
- policy_path = "sephora_com_policy.txt"
101
 
102
  # Laden der Daten
103
  with open(gdpr_path, "r", encoding="utf-8") as f:
 
96
  st.title("🛡️ GDPR Compliance Checker")
97
 
98
  # Fixe Dateipfade
99
+ gdpr_path = "/app/src/gdpr_articles_baseline.json"
100
+ policy_path = "/app/src/sephora_com_policy.txt"
101
 
102
  # Laden der Daten
103
  with open(gdpr_path, "r", encoding="utf-8") as f: