Project

jekyll-ftp

0.01
No commit activity in last 3 years
No release in over 3 years
Jekyll deployment made easy.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

Jekyll-FTP

Commands

  • jekyll-ftp deploy - Deploy your site via FTP with the preconfigured settings.
  • jekyll-ftp clean - Remove all the files from the preconfigured remote_dir.

Installation

Add the gem to your Gemfile.

# Gemfile

gem 'jekyll-ftp'

Add the gem to your plugins in your _config.yml.

# _config.yml

plugins:
  - jekyll-ftp

Configuring your _config.yml File

Since Jekyll uses _config.yml, Jekyll-FTP uses this too.

Jekyll-FTP needs 3 configuration settings:

  • username - Your FTP server username.
  • server_url - The URL for your FTP server (can also be an FTP).
  • remote_dir - The remote directory where your site is to be deployed.
username: UserName
server_url: ftp.myserver.com
remote_dir: /public_html

Here's an example configuration..