Establish the design foundation for the heleosv2 multi-tenant hosting platform before any implementation code: - Monorepo skeleton: docs/, platform-infra/, site-templates/, deployments/, control-panel/ with orientation READMEs. - docs/: roadmap index, architecture + threat model, naming conventions, site profiles, provisioning workflow, backup & DR runbook, repo/GitOps layout, and the approved architecture plan. - docs/adr/: 9 ADRs recording the rationale for single-host Compose, Traefik edge, nginx+fpm split, shared MariaDB, ZFS-per-customer, decoupled backup streams, Forgejo, CLI-first, and SFTP-only. - Secrets hygiene: .gitignore (only *.enc.* committed) and .gitattributes (LF for scripts/Dockerfiles/YAML run on the Linux host). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
649 B
Text
23 lines
649 B
Text
# Normalize line endings. This repo is authored on Windows but runs on a Linux
|
|
# host — CRLF in shell scripts / Dockerfiles / YAML breaks execution there.
|
|
|
|
# Default: let Git normalize text files to LF in the repo.
|
|
* text=auto eol=lf
|
|
|
|
# Files that MUST be LF (executed or parsed on Linux):
|
|
*.sh text eol=lf
|
|
*.bash text eol=lf
|
|
Dockerfile text eol=lf
|
|
*.dockerfile text eol=lf
|
|
*.yml text eol=lf
|
|
*.yaml text eol=lf
|
|
*.conf text eol=lf
|
|
*.env text eol=lf
|
|
*.py text eol=lf
|
|
*.j2 text eol=lf
|
|
|
|
# Binary files Git should never touch:
|
|
*.png binary
|
|
*.jpg binary
|
|
*.gz binary
|
|
*.age binary
|