kikubari

Naive deploy system for deploy agnostic code. Kikubari only take care about repository, folder structure and file configurations. It also will run before an after task from commmand line and log it to the deployment log. I created because I have to maintain a server with PHP and Ruby code with differents framworks: Ruby on Rails, Symfony 1 and 2, pure PHP and Worpress.

If you need a more complex solution maybe you want to take a look on Capistrano. If you want to deploy differents frameworks with differents languages maybe you want to stay here a colaborate.

Usage:

project
   deploy.yml
   ...
kikubari .

Result:

project
   deploy.yml

└── releases
      12345678
      current

└── your_folder
       your_files

Examples

Wordpress

  config:
    framework: wordpress
    system: git
    origin: "git@github.com:josetonyp/path_to_project.git"
    branch: master
    history_limit: 10

  do:
    folder_structure:
      log: 'log'
      uploads: 'uploads'
      config: 'config'
      coda_cache: 'coda_cache'

    link_files:
      uploads: 'wp-content/uploads'
      coda_cache: 'wp-content/themes/coda/cache'

Contributing to kikubari

= Copyright

Copyright © 2012 Jose Antonio Pio Gil. See LICENSE.txt for further details.