Skip to content

Flegma/deploy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deploy

Minimalistic deployment shell script based on Visionmedia deploy script.

Installation

$ git clone https://github.com/Flegma/deploy.git
$ cd deploy
$ make install

Deploy parameters examples

Parameters explanation:

  [prod]  -> This can be anything. It identifies the environment you're deploying to.
  forward-agent -> We want to forward our SSH agent so we can connect to the repository.
  needs_tty -> This is interactive terminal or teletypewritter. This is useful if we need to enter stuff into terminal while deploying (parameteres, etc.)
  user -> Username of the account we are deploying to.
  host -> IP address or the FQDN that points to the server we are deploying to.
  port -> SSH port. 
  repo -> Bitbucket/Gitlab or any other repository
  path -> Path to which we are deploying. Usually /home/username. For theme only deploy we use wp-content folder without the trailing slash /.
  ref -> Branch which we want to deploy. 
  broj -> Number of the releases we want to save before deleting them. 
  pre-deploy -> Pre deploy script. Comment it out with # if not needed.
  mid-deploy -> Deploy script that runs before the folder is actually symlinked to the main folder. Comment it out with # if not needed.
  post-deploy -> Post deploy script that runs after the deploy is finished. We can change permissions to folders in this script, etc. Comment it out with # if not needed.

For Symfony use this example:

  [prod]
  forward-agent yes
  needs_tty yes
  user username
  host myserver.com
  port 22
  repo [email protected]:name/repo-name.git
  path /home/username
  ref master
  broj 3
  pre-deploy ./0pre.sh
  mid-deploy ./1mid.sh
  post-deploy ./2post.sh

For Wordpress use this example:

  [prod]
  forward-agent yes
  needs_tty yes
  user username
  host myserver.com
  port 22
  repo [email protected]:name/repo-name.git
  path /home/username
  ref master
  broj 3
  pre-deploy ./0pre.sh
  mid-deploy ./1mid.sh
  post-deploy ./2post.sh

For Wordpress Theme use this example:

  [prod]
  forward-agent yes
  needs_tty yes
  user username
  host myserver.com
  port 22
  repo [email protected]:name/repo-name.git
  path /home/username/public_html/wp-content
  ref master
  broj 5
  pre-deploy ./0pre.sh
  mid-deploy ./1mid.sh
  post-deploy ./2post.sh

Usage

  Usage: deploy [options] <env> [command]

Options:

-C, --chdir <path>   change the working directory to <path>
-c, --config <path>  set config path. defaults to ./deploy.conf
-T, --no-tests       ignore test hook
-V, --version        output program version
-h, --help           output help information

Commands:

setup                run remote setup commands
symfony              run remote symfony setup commands
wordpress            run remote wordpress setup commands
restore              run remote server account restore
update               update deploy to the latest release
revert [n]           revert to [n]th last deployment or 1
config [key]         output config file or [key]
curr[ent]            output current release commit
prev[ious]           output previous release commit
exec|run <cmd>       execute the given <cmd>
console              open an ssh session to the host
list                 list previous deploy commits
[ref]                deploy to [ref], the 'ref' setting, or latest tag

Visit the wiki for additional usage information.

Configuration

By default deploy(1) will look for ./deploy.conf, consisting of one or more environments, [stage], [production], etc, followed by directives.

[stage]
key /path/to/some.pem
user deployer
host n.n.n.n
repo [email protected]:visionmedia/express.git
path /var/www/myapp.com
ref origin/master
post-deploy /var/www/myapp.com/update.sh

Directives

key (optional)

Path to identity file used by ssh -i.

  key /path/to/some.pem

ref (optional)

When specified, HEAD is reset to ref. When deploying production typically this will not be used, as deploy(1) will utilize the most recent tag by default, however this is useful for a staging environment, as shown below where HEAD is updated and set to the develop branch.

    ref origin/develop

user

User for deployment.

   user deployer

host

Server hostname.

   host 50.17.255.50

repo

GIT repository to clone.

   repo [email protected]:visionmedia/express.git

path

Deployment path.

    path /var/www/myapp.com

forward-agent

Webhosts normally use read-only deploy keys to access private git repositories. If you'd rather use the credentials of the person invoking the deploy command, put forward-agent yes in the relevant config sections. Now the deploy script will invoke ssh -A when deploying and there's no need to keep SSH keys on your servers.

needs_tty

If your deployment scripts require any user interaction (which they shouldn't, but often do) you'll probably want SSH to allocate a tty for you. Put needs_tty yes in the config section if you'd like the deploy script to invoke ssh -t and ensure you have a tty available.

Hooks

All hooks are arbitrary commands, executed relative to path/current, aka the previous deployment for pre-deploy, and the new deployment for post-deploy. Of course you may specify absolute paths as well.

pre-deploy

  pre-deploy ./bin/something

mid-deploy

  mid-deploy ./bin/something_else

post-deploy

  post-deploy ./bin/finish

test

Post-deployment test command after post-deploy. If this command fails, deploy(1) will attempt to revert to the previous deployment, ignoring tests (for now), as they are assumed to have run correctly.

  test ./something

License

(The MIT License)

Copyright (c) 2011 TJ Holowaychuk <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Minimalistic deployment shell script

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 99.7%
  • Makefile 0.3%