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 +}