Skip to content

Commit

Permalink
Merge pull request #67 from nkls-so/patch-1
Browse files Browse the repository at this point in the history
feat: add support for http_auth_domain spider attribute
  • Loading branch information
jasonbosco authored Aug 26, 2024
2 parents 2c505db + d33c3ec commit 1ac7843
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scraper/src/documentation_spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class DocumentationSpider(CrawlSpider, SitemapSpider):
"""
http_user = os.environ.get('DOCSEARCH_BASICAUTH_USERNAME', None)
http_pass = os.environ.get('DOCSEARCH_BASICAUTH_PASSWORD', None)
http_auth_domain = os.environ.get('DOCSEARCH_AUTH_DOMAIN', None)
typesense_helper = None
strategy = None
js_render = False
Expand Down

0 comments on commit 1ac7843

Please sign in to comment.