HackmanCMS/.gitignore
Bashy ac5b82c381 Load config.local.php from repo root for server-side secrets
Provides a gitignored override file for credentials like LinkedIn OAuth
keys, avoiding reliance on Apache SetEnv / PHP-FPM env config.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-28 12:40:14 +03:00

40 lines
632 B
Text

# Local SQLite database + WAL/SHM files
data/*.sqlite
data/*.sqlite-shm
data/*.sqlite-wal
# Generated by deploy scripts — version/sha/branch/built fingerprint for the footer
web/BUILD
# Local config overrides (never commit secrets)
config/config.local.php
config.local.php
.env
.env.local
# Logs
*.log
logs/
# Editor / IDE
.DS_Store
.vscode/
.idea/
*.swp
*.swo
*~
# Composer (if/when used)
vendor/
composer.lock
# npm (if a project type ever needs it locally)
node_modules/
# PHP-CGI temp / coverage
.phpunit.result.cache
.phpunit.cache/
# Backups produced locally by the backup endpoint when invoked from CLI
*.bak
*.zip