Changes between Version 4 and Version 5 of cypress/VScode
- Timestamp:
- 05/19/21 14:50:12 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/VScode
v4 v5 9 9 - On macOS - Code > Preferences > Settings 10 10 * Add your remote configs to "remotefs.remote" in your User Settings. 11 ''' 11 {{{#!bash 12 12 "remotefs.remote": { 13 13 "cypress-home": { 14 14 "scheme": "sftp", 15 15 "host": "cypress.tulane.edu", 16 "username": " fuji",17 "rootPath": "/home/ fuji"16 "username": "YOUR USER ID", 17 "rootPath": "/home/YOUR_HOME" 18 18 }, 19 19 "cypress-lustre": { 20 20 "scheme": "sftp", 21 21 "host": "cypress.tulane.edu", 22 "username": " fuji",23 "rootPath": "/lustre/project/ dpg/fuji"22 "username": "YOUR USER ID", 23 "rootPath": "/lustre/project/YOUR_PROJECT_DIR" 24 24 } 25 25 } 26 ''' 26 }}} 27 27 * Cmd+Shift+P open command palette(Ctrl+Shift+P on Windows/Linux), run Remote FS: Add Folder to Workspace command. 28 28