Files
Atomcms-edit/.gitignore
T
root 1db80e76fe chore: clean up repo structure and polish docs
- Rewrite .gitignore in English with proper patterns for build artifacts, storage files, and IDE files
- Remove tracked build assets (hash-based) and storage files from git
- Update LICENSE copyright to 2026 Remco (Epicnabbo)
- Fix clone URLs in README (remove placeholder gitea-server)
- Sync docs/INSTALL.md with README installation guide
2026-06-06 20:12:08 +02:00

50 lines
808 B
Plaintext
Executable File

# --- Environment ---
.env
.env.backup
.env.testing
.env.production
# --- Dependencies ---
node_modules/
vendor/
# --- Build artifacts (hashed filenames) ---
public/build/assets/
public/build/hot
# --- Storage (uploaded files, cache, logs, sessions) ---
storage/app/livewire-tmp/
storage/app/public/
storage/clockwork/
storage/debugbar/
storage/framework/views/
storage/framework/cache/
storage/framework/sessions/
storage/framework/testing/
storage/logs/
# --- IDE & OS ---
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# --- Config (no default .env push) ---
config.php
.rr.yaml
# --- Tests & Temp ---
ci_test.txt
cookies.txt
.phpunit.result.cache
# --- Lock files (yarn.lock is tracked, package-lock.json is not) ---
package-lock.json
# --- Scripts (local-only) ---
watch.sh
check-updates.sh