Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.29 KB

rsync-deploy.md

File metadata and controls

75 lines (52 loc) · 1.29 KB

Rsync Deploying

This is an easy way publish your site with rsynch to serve the generated static files.

Steps

1. Install dependencies

Install the gulp-rsync gulp plugin:

$ npm install --save-dev gulp-rsync

2. Create a rsync config file

Add a file to project root rsync.json.

{
    "hostname": "hostname or ip",
    "username": "username",
    "destination": "folder"
}

for example

{
    "hostname": "example.com",
    "username": "user1",
    "destination": "/home/httpd/website"
}

3. Create a deploy task

Add this task to your gulpfile.js. It will run build task before deploying:

gulp.task('deploy', ['build'], () => {

    var rsyncConfig = require('./rsync.json');

    return gulp.src('dist/**')
        .pipe($.rsync({
            root: 'dist',
            hostname: rsyncConfig.hostname,
            username: rsyncConfig.username,
            destination: rsyncConfig.destination,
            progress: true
        }));
});

4. Deploy

Run the following command to deploy:

$ gulp deploy

Tip

It is highly recommended to enable asset revisioning.

Tip

You can add rsync.json file to .gitignore to protect your connection data.

/rsync.json