From 71a46c6b6324e685d891516c8c03912a69923967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Mon, 19 Jan 2026 16:17:35 +0100 Subject: [PATCH] chore: update rsync excludes in deployer config --- deploy.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/deploy.php b/deploy.php index cf3bd74..a83e476 100644 --- a/deploy.php +++ b/deploy.php @@ -18,7 +18,6 @@ add('shared_dirs', [ add('shared_files', [ 'public/.htaccess', '.env.local.php', - 'var/data.db', ]); set('keep_releases', 3); @@ -26,12 +25,15 @@ set('keep_releases', 3); // Rsync options, mainly files/dirs to exclude $rsyncOptions = [ 'exclude' => [ + '.claude', + '.cursor', '.idea', '.vscode', '.DS_Store', '.ddev', '.git', '.github', + '.jj', 'node_modules', '.editorconfig', '.env.dev.local', @@ -44,14 +46,18 @@ $rsyncOptions = [ '.php-cs-fixer.dist.php', '.phpunit.result.cache', 'config/secret/', + 'CLAUDE.md', + 'cypress*', 'deploy.php', + 'docs', 'package.json', 'package-lock.json', '*.http', - 'http-client.private.env.json', + 'http-client*.json', 'postcss.config.js', 'phpunit.xml.dist', 'public/.htaccess', + 'ray.php', 'tailwind.config.js', 'webpack.config.js', 'bin/.phpunit',