From 5a0aae373b323086f005a37917ddaa6b9a6b2173 Mon Sep 17 00:00:00 2001 From: Greg Esmond Date: Fri, 22 Feb 2019 11:03:04 -0600 Subject: [PATCH] git config --- .gitignore | 1 + .vscode/sftp.json | 25 +++++++++++++++++++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 17c9665295ba08..2ea31517329c38 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ a.out *.vcd config.json clcache +.vscode/*.json board/obj/ selfdrive/boardd/boardd diff --git a/.vscode/sftp.json b/.vscode/sftp.json index f8cc070ad346cd..7fdbd7c2f3b863 100644 --- a/.vscode/sftp.json +++ b/.vscode/sftp.json @@ -1,10 +1,27 @@ { - "name": "HomeWiFi", - "host": "192.168.1.33", "protocol": "sftp", "port": 8022, "username": "root", - "remotePath": "/", "privateKeyPath": "~/.ssh/openpilot2_rsa", - "uploadOnSave": true + "uploadOnSave": true, + "autoUpload": true, + "profiles": { + "Home-OpenPilot": { + "host": "192.168.1.33", + "remotePath": "/data/openpilot" + }, + "Home-EON": { + "host": "192.168.1.33", + "remotePath": "/" + }, + "Hotspot-OpenPilot": { + "host": "192.168.1.33", + "remotePath": "/data/openpilot" + }, + "Hotspot-EON": { + "host": "192.168.43.1", + "remotePath": "/" + }, + "defaultProfile": "Home-EON" + } }