You've already forked Atomcms-edit
4cb49e9521
The vendor/ entry in .gitignore was blocking lang/vendor/filament/ from being tracked. Added !lang/vendor/ exception and committed all 21 language translation files (login.php + resources.php) so the other VPS can pull them via git.
51 lines
822 B
Plaintext
Executable File
51 lines
822 B
Plaintext
Executable File
# --- Environment ---
|
|
.env
|
|
.env.backup
|
|
.env.testing
|
|
.env.production
|
|
|
|
# --- Dependencies ---
|
|
node_modules/
|
|
vendor/
|
|
!lang/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
|