Skip to content

Deployer is a free and open source deployment tool.

License

Notifications You must be signed in to change notification settings

devLopez/deployer-1

 
 

Repository files navigation

Deployer

Deployer is a PHP Application deployment system powered by Laravel 5.2, written & maintained by Stephen Ball.

Check out the releases, license, screenshots, and contribution guidelines.

Gitter

Current Build Status

StyleCI Build Status Code Climate Test Coverage SensioLabs Insight

Release Status

PHP Dependency Status Node Dependency Status Latest Version

What it does

  • Deploys applications to multiple servers accessible via SSH
  • Clones your project's git repository
  • Installs composer dependencies
  • Runs arbitrary bash commands
  • Gracefully handles failure in any of these steps
  • Keeps a number of previous deployments
  • Monitors that cronjobs are running
  • Allows deployments to be triggered via a webhook

What it doesn't do

Usage in production

The master branch of this repository is a development branch and should not be used in production. Changes are merged into the release branch when they are considered stable and may then be tagged for release at any time. It is recommended that you use the latest tag release for production. For information on contributing see contribution guidelines.

Requirements

Optional extras

  • Supervisor to keep the queue listener and Node.js socket server running
  • A caching server, unless you expect a lot of traffic the default file cache is probably enough

Installation

  1. Clone the repository

    $ git clone https://github.com/REBELinBLUE/deployer.git
  2. Checkout the latest release

    $ git checkout 0.0.26
  3. Install dependencies

    $ composer install -o --no-dev
    $ npm install --production
  4. Make sure the storage and upload directories are writable

    $ chmod -R 777 storage
    $ chmod -R 777 public/upload
  5. Run the installer and follow the instructions

    $ php artisan app:install
  6. (Optional) Make any additional configuration changes

    $ editor .env

Updating

  1. Get the latest code

    $ git fetch --all
    $ git checkout 0.0.26
  2. Update the dependencies

    $ composer install -o --no-dev
    $ npm install --production
  3. Run the updater

    $ php artisan app:update

License

Deployer is licensed under The MIT License (MIT).

About

Deployer is a free and open source deployment tool.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 58.2%
  • HTML 20.7%
  • JavaScript 20.4%
  • Other 0.7%