Giter Club home page Giter Club logo

dandelion's Introduction

Dandelion

Incremental Git repository deployment.

Install

Ensure that Ruby and RubyGems are installed, then run:

$ gem install dandelion

Alternatively, you can build the gem yourself:

$ git clone git://github.com/scttnlsn/dandelion.git
$ cd dandelion
$ rake install

Config

Configuration options are specified in a YAML file (by default, the root of your Git repository is searched for a file named dandelion.yml). Example:

# Required
scheme: sftp
host: example.com
username: user
password: pass

# Optional
path: path/to/deployment
exclude:
    - .gitignore
    - dandelion.yml
revision_file: .revision

Schemes

There is support for multiple backend file transfer schemes. The configuration must specify one of these schemes and the set of additional parameters required by the given scheme.

SFTP: scheme: sftp

Required:

  • host
  • username
  • password

Optional:

  • path
  • exclude
  • port
  • revision_file (defaults to .revision)
  • preserve_permissions (defaults to true)

FTP: scheme: ftp

Required:

  • host
  • username
  • password

Optional:

  • path
  • exclude
  • port
  • revision_file (defaults to .revision)
  • passive (defaults to true)

Amazon S3: scheme: s3

Required:

  • access_key_id
  • secret_access_key
  • bucket_name

Optional:

  • path
  • exclude
  • revision_file (defaults to .revision)

Usage

From within your Git repository, run:

$ dandelion deploy

This will deploy the local HEAD revision to the location specified in the config file. Dandelion keeps track of the currently deployed revision so that only files which have been added/changed/deleted need to be transferred.

You can specify the revision you wish to deploy and Dandelion will determine which files need to be transferred:

$ dandelion deploy <revision>

For a more complete summary of usage options, run:

$ dandelion -h
Usage: dandelion [options] <command> [<args>]
    -v, --version                    Display the current version
    -h, --help                       Display this screen
        --repo=[REPO]                Use the given repository
        --config=[CONFIG]            Use the given configuration file

Available commands:
    deploy
    status

Note that when specifying the repository or configuration file, the given paths are relative to the current working directory (not the repository root). To see the options for a particular command, run:

$ dandelion <command> -h

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.