From 8470e90f56dd94e95481820bb32cba00564de994 Mon Sep 17 00:00:00 2001 From: Clemens Creutzburg Date: Sun, 29 Mar 2026 22:27:22 +0200 Subject: [PATCH] ftp Einstellungen --- .gitattributes | 5 +++++ .gitignore | 6 ++++++ .vscode/ftp-sync.example.json | 27 +++++++++++++++++++++++++++ .vscode/sftp.example.json | 13 +++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 .gitattributes create mode 100644 .vscode/ftp-sync.example.json create mode 100644 .vscode/sftp.example.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8577790 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +*.woff binary +*.woff2 binary +*.ttf binary +*.eot binary +*.otf binary diff --git a/.gitignore b/.gitignore index d1ae980..15efdab 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,9 @@ /app/Config/database.php /vendors/* +# Local editor/deploy configuration +/.vscode/ftp-sync.json +/.vscode/sftp.json + +.vscode/ftp-sync.json +.vscode/sftp.json diff --git a/.vscode/ftp-sync.example.json b/.vscode/ftp-sync.example.json new file mode 100644 index 0000000..396b90f --- /dev/null +++ b/.vscode/ftp-sync.example.json @@ -0,0 +1,27 @@ +{ + "remotePath": "./", + "host": "your-host", + "username": "your-username", + "password": "your-password", + "port": 21, + "secure": true, + "protocol": "ftp", + "uploadOnSave": false, + "passive": false, + "debug": false, + "privateKeyPath": null, + "passphrase": null, + "agent": null, + "allow": [], + "ignore": [ + "\\.vscode", + "\\.git", + "\\.DS_Store" + ], + "generatedFiles": { + "extensionsToInclude": [ + "" + ], + "path": "" + } +} diff --git a/.vscode/sftp.example.json b/.vscode/sftp.example.json new file mode 100644 index 0000000..829b5eb --- /dev/null +++ b/.vscode/sftp.example.json @@ -0,0 +1,13 @@ +{ + "name": "Project Deployment", + "host": "your-host", + "protocol": "ftp", + "port": 21, + "username": "your-username", + "password": "your-password", + "remotePath": "/", + "secure": true, + "uploadOnSave": false, + "useTempFile": false, + "openSsh": false +}