Add a problem-first "sound familiar?" section, rework the hero and terminal signature to lead with business outcomes instead of tool names, add an FAQ for people who can't name their problem yet, and add an email-capture form (Listmonk) for visitors who aren't ready to book a call. Design decisions recorded in docs/design-brief-smb-refresh.md.
20 lines
627 B
TOML
20 lines
627 B
TOML
# Homelab bootstrap — gitleaks allowlist (tests, examples, placeholders)
|
|
title = "homelab gitea bootstrap"
|
|
|
|
[allowlist]
|
|
description = "Test fixtures and example configs are not production secrets"
|
|
paths = [
|
|
'''(?i).*\.test\.(ts|tsx|js|jsx|py)$''',
|
|
'''(?i).*\.spec\.(ts|tsx|js|jsx)$''',
|
|
'''(?i).*/tests/.*''',
|
|
'''(?i).*/__tests__/.*''',
|
|
'''(?i).*\.example\.(yml|yaml|env|json|toml)$''',
|
|
'''(?i).*vault\.example\.(yml|yaml)$''',
|
|
'''(?i).*\.env\.example$''',
|
|
]
|
|
regexes = [
|
|
'''(?i)(invalid|fake|dummy|placeholder|example|changeme|change_me|not-a-real)''',
|
|
'''(?i)sk-or-invalid''',
|
|
'''(?i)msk-or-invalid''',
|
|
]
|