Skip to content

Instantly share code, notes, and snippets.

@youthkee
Last active January 12, 2016 01:19
Show Gist options
  • Save youthkee/c4646b6baae4741a9d5c to your computer and use it in GitHub Desktop.
Save youthkee/c4646b6baae4741a9d5c to your computer and use it in GitHub Desktop.
Atomで複数フォルダをプロジェクトに登録してSFTPする方法 ref: http://qiita.com/youthkee/items/2910b10f5ece27ba9d9f
{
"type": "ftp",
"host": "example.com",
"user": "username",
"password": "password",
"port": "21",
"remotePath": "/example/path"
}
prj1
├── htdocs
│ ├── index.html
│ ├── img
│ │ └── logo.png
│ ├── css
│ │ └── style.css
│ └── js
│ └── script.js
└── _work
├──src
│ ├── index.jade
│ ├── img
│ │ └── logo.png
│ └── css
│ └── style.scss
├── package.json
├── gulpfile.js
└── node_modules
htdocs
├── index.html
├── img
│ └── logo.png
├── css
│ └── style.css
├── js
│ └── script.js
└── deployment-config.json
_work
├──src
│ ├── index.jade
│ ├── img
│ │ └── logo.png
│ └── css
│ └── style.scss
├── package.json
├── gulpfile.js
└── node_modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment