Initial scaffold: .gitignore, config, requirements, data seeds, directory structure

This commit is contained in:
n0mad1k
2026-03-19 08:34:32 -04:00
commit aa0f35803f
26 changed files with 1908 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# Example source profile — copy and customize for your own sources
# Place in collectors/profiles/ or pass with --profile flag
name: my_source
description: "Description of the document source"
base_url: "https://example.com/documents/"
domain_allowlist:
- example.com
- www.example.com
crawl_rules:
max_depth: 2
max_documents: 500
follow_links: true
url_patterns:
- "/documents/*"
- "*.pdf"
exclude_patterns:
- "*.css"
- "*.js"
- "*.ico"
- "*.png"
- "*.jpg"
content_types:
- text/html
- application/pdf
expected_min_count: 100
rate_limit: 1.0
mirrors: []