An ember-cli-deploy plugin that uploads your build to to a FTP/S Server. Works with TLS!
This addon uses basic-ftp, which requires node 7.6 or later.
- Install this plugin
$ ember install ember-cli-deploy-ftps
- Place the following configuration into
config/deploy.js
ENV['ftps'] = {
host: '<your-ftp-server>'
username: '<user>',
password: '<pass>'
}
- Run the pipeline
$ ember deploy
Node 7.6 or later
For detailed information on what plugin hooks are and how they work, please refer to the Plugin Documentation.
upload
For detailed information on how configuration of plugins works, please refer to the Plugin Documentation.
The FTP Host name
Default: undefined
The FTP host port
Default: 31
The FTP server login username
Default: anonymous
The FTP server login password
Default: anonymous
Path on FTP server where the files will be uploaded to
Default: /
Set to true
for FTP over TLS
Default: false
If set to true
, remoteRoot
will be emptied before upload
Default: false
$ npm test
PRs welcome!
MIT