2.0.0 • Published 5 years ago
ember-cli-deploy-ftp v2.0.0
ember-cli-deploy-ftp
ember-cli-deploy wrapper for ftp-deploy
Installation
npm install ember-cli-deploy-ftpUsage
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 addressport– 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.