jerpint commited on
Commit
ae8bdad
1 Parent(s): 1c29b1a

rely on env. variables

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ if os.getenv("OPENAI_API_KEY") is None:
18
  )
19
 
20
 
21
- homepage_url = os.getenv("RTD_URL", "https://orion.readthedocs.io/")
22
- target_version = os.getenv("RTD_VERSION", "en/stable")
23
 
24
  # scrape and embed content from readthedocs website
25
  scrape_rtd(
 
18
  )
19
 
20
 
21
+ homepage_url = os.getenv("RTD_URL") # e.g. "https://orion.readthedocs.io/"
22
+ target_version = os.getenv("RTD_VERSION") # e.g. "en/stable"
23
 
24
  # scrape and embed content from readthedocs website
25
  scrape_rtd(