Last active
September 13, 2020 00:19
-
-
Save jeremy-farrance/fbe036c98e88e998896a0f053c5f24e4 to your computer and use it in GitHub Desktop.
VS Code sftp.json for liximomo's vscode-sftp extension for DNN (DotNetNuke) front-end editing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"host": "___HOST_NAME___", | |
"username": "___USER_NAME___", | |
"password": "___PASSWORD___", | |
"name": "AccuTheme", | |
"context": "./app", | |
"protocol": "ftp", | |
"port": 21, | |
"secure": true, | |
"secureOptions": { | |
"rejectUnauthorized": false | |
}, | |
"passive": false, | |
"uploadOnSave": true, | |
"syncOption": { | |
"update": true, | |
"delete": true | |
}, | |
"watcher": { | |
"files": "**/AccuTheme/**/*", | |
"autoUpload": true, | |
"autoDelete": true | |
}, | |
"ignore": [ | |
"**/.git/", | |
"**/.vscode/", | |
"**/gulpfile.js/", | |
"**/node_modules/", | |
"**/src/", | |
"**/README.md", | |
"**/*.LICENSE.txt", | |
".*", | |
"package.json", | |
"package-lock.json", | |
"real-favicon-generator.json", | |
"webpack.config.js", | |
"Thumbs.db", | |
".DS_Store" | |
], | |
"remotePath": "/", | |
"remoteExplorer": { | |
"filesExclude": [ | |
"/.well-known", | |
"/admin", | |
"/App_Browsers", | |
"/App_Code/ModuleCreator", | |
"/App_Data", | |
"/App_GlobalResources", | |
"/aspnet_client", | |
"/bin", | |
"/backup", | |
"/Components", | |
"/Config", | |
"/controls", | |
"/DesktopModules/Admin", | |
"/DesktopModules/AuthenticationServices", | |
"/DesktopModules/CoreMessaging", | |
"/DesktopModules/CustomProperty", | |
"/DesktopModules/DevicePreviewManagement", | |
"/DesktopModules/DigitalAssets", | |
"/DesktopModules/EasyDNNNews?*", | |
"/DesktopModules/Events*Calendar*", | |
"/DesktopModules/Feedback", | |
"/DesktopModules/ForgottenUser", | |
"/DesktopModules/HyperSettings", | |
"/DesktopModules/Journal", | |
"/DesktopModules/MemberDirectory", | |
"/DesktopModules/MobileManagement", | |
"/DesktopModules/ModuleCreator", | |
"/DesktopModules/SocialGroups", | |
"/DesktopModules/UserDefinedTable", | |
"/DesktopModules/XModPro?*", | |
"/Documentation", | |
"/Icons", | |
"/images", | |
"/imagecache", | |
"/Install", | |
"/js", | |
"/Licenses", | |
"/obj", | |
"/Portals/*/Cache", | |
"/Portals/*/Users", | |
"/Portals/*/Images", | |
"/Portals/_default/EventQueue", | |
"/Portals/_default/Logs", | |
"/Portals/_default/MergedTemplate", | |
"/Portals/_default/Smileys", | |
"/Providers", | |
"/Resources", | |
"/DNN.ico", | |
"/Default.aspx*", | |
"/DotNetNuke.ico", | |
"/KeepAlive.aspx*", | |
"/ErrorPage.aspx*", | |
"/DNN.ico", | |
"/403-3.gif", | |
"*.map", | |
"Thumbs.db", | |
"*DS_Store", | |
"*.template.*.resx", | |
"*.template.resources", | |
"end-of-this-list" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Proper credit to Chris (GitHub) for re-organizing this nicely and additions like 'watcher' and the TLC in 'ignore' and 'filesExclude'.