Project

kikubari

0.0
No commit activity in last 3 years
No release in over 3 years
Naive multiframework deployer for handle server deployments with some care about the code replacement. Also an experimental project.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.10
~> 11.1
~> 3.4

Runtime

~> 1.3
 Project Readme

Build Status

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:

  • Create a deploy.yml file in your deploy target folder
  • Run kikubari:: /path_to_folder or ./
  • Have a beer and see it work
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

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

= Copyright

Copyright (c) 2012 Jose Antonio Pio Gil. See LICENSE.txt for further details.