vscode-sftp
vscode-sftp copied to clipboard
Global sftp.json file
Is this a similar or duplicate feature request?
- [ ] I don't know. I will go check it.
- [x] No.
Is your feature request related to a problem? Please describe.
When working in a company on a project, it is considered bad practice to commit sftp credentials to the repository. I can ignore .vscode folder and be done with it. But what if we get a new team member, they would need to set up the credentials in every project they're going to be working on.
Describe the solution you'd like
The "sftp.json" file can be also stored in the user settings.json file, as in:
"sftp.servers": [
{
"host": "..",
"username": "..",
"password": "..",
"localPath:" "$HOME/Sites/example.org"
}
]
localPath would be a way to provide context to SFTP which server configuration to choose from the array.
This way, I can send the new team member my user settings.json and they'd have all credentials they need, and can get started right away.
Does this project help you?
- [x] Yes. SFTP IS AWESOME!
- [x] Thank you for continuing to maintain this project!