exclude maintenance.flag from rsync deploy and git

This commit is contained in:
Pontoporeia
2026-05-07 12:27:33 +02:00
parent 3f87d71e38
commit 821369f004
3 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@@ -8,6 +8,7 @@ app/storage/test.db
### Logs ### ### Logs ###
error.log error.log
app/storage/maintenance.flag
app/storage/cache/* app/storage/cache/*
!app/storage/cache/.gitkeep !app/storage/cache/.gitkeep
app/storage/covers/* app/storage/covers/*

View File

@@ -97,3 +97,4 @@
- [x] Replace old button definitions in admin.css, form.css, tfe.css, file-access.css, system.css with empty alias comments - [x] Replace old button definitions in admin.css, form.css, tfe.css, file-access.css, system.css with empty alias comments
- [x] Update all PHP templates to use new `.btn` classes (`btn btn--primary`, `btn btn--secondary`, `btn btn--danger`, etc.) - [x] Update all PHP templates to use new `.btn` classes (`btn btn--primary`, `btn btn--secondary`, `btn btn--danger`, etc.)
- [x] Update border-radius on pagination buttons to 10px for consistency - [x] Update border-radius on pagination buttons to 10px for consistency
- [x] Exclude `storage/maintenance.flag` from rsync deploy and git

View File

@@ -14,6 +14,7 @@ setup:
[group('dev')] [group('dev')]
serve: migrate serve: migrate
@xdg-open http://127.0.0.1:8000 & @xdg-open http://127.0.0.1:8000 &
@xdg-open http://127.0.0.1:8000/admin/ &
@php \ @php \
-d upload_max_filesize=512M \ -d upload_max_filesize=512M \
-d post_max_size=520M \ -d post_max_size=520M \
@@ -53,6 +54,7 @@ deploy:
--exclude 'storage/covers' \ --exclude 'storage/covers' \
--exclude 'storage/backup_*' \ --exclude 'storage/backup_*' \
--exclude 'storage/cache/*' \ --exclude 'storage/cache/*' \
--exclude 'storage/maintenance.flag' \
--exclude 'storage/fixtures' \ --exclude 'storage/fixtures' \
--exclude 'storage/docs' \ --exclude 'storage/docs' \
--exclude 'var/cache/*' \ --exclude 'var/cache/*' \