ember-cli-deploy-ftp
ember-cli-deploy wrapper for ftp-deploy
Installation
npm install ember-cli-deploy-ftp
Usage
Add e.g. the following snippet to your config/deploy.js
file:
ENV.ftp = {
host: 'ftp.your-server.com',
username: 'johndoe',
password: process.env.FTP_PASSWORD,
};
Options
-
host
– required: FTP host name or IP address -
port
– optional: FTP server port (default:21
) -
username
– optional: FTP username (default:anonymous
) -
password
– optional: FTP password (default:anonymous
) -
remoteRoot
– optional: deploy target folder on the FTP server (default:/
) -
include
– optional: included files (default:['*', '**/*']
) -
exclude
– optional: excluded files (default:[]
)
License
This project is licensed under the MIT License.