Skip to content
/ deploy Public
forked from kerns/deploy

Automated project deployment via Git and PHP

License

Notifications You must be signed in to change notification settings

voku/deploy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 

Repository files navigation

Simple PHP Git deploy script

Automatically deploy the code using PHP and Git.

Requirements

  • git, rsync, and tar binaries are required on the server that's running the script (server machine).
  • The system user running PHP (e.g. www-data) needs to have the necessary access permissions for the TMP_DIR and TARGET_DIR locations on the server machine.
  • If the Git repo you wish to deploy is private, the system user running PHP also needs to have the right SSH keys to access the remote repository.

Usage

  • Configure deploy.php and put it somewhere that's accessible from the Internet.
  • Configure your git repository to call this script when the code is updated. The instructions for GitHub and Bitbucket are below.

GitHub

  1. (This step is only needed for private repositories) Go to https://github.com/USERNAME/REPOSITORY/settings/keys and add your server SSH key
  2. Go to https://github.com/USERNAME/REPOSITORY/admin/hooks
  3. Select the WebHook URLs service hook
  4. Enter the URL to your deployment script e.g. http://example.com/deploy.php?sat=YourSecretAccessTokenFromDeployFile
  5. Click Update Settings

Bitbucket

  1. (This step is only needed for private repositories) Go to https://bitbucket.org/USERNAME/REPOSITORY/admin/deploy-keys and add your server SSH key
  2. Go to https://bitbucket.org/USERNAME/REPOSITORY/admin/services
  3. Add POST service
  4. Enter the URL to your deployment script e.g. http://example.com/deploy.php?sat=YourSecretAccessTokenFromDeployFile
  5. Click Save

Generic GIT

  1. Configure the SSH keys
  2. Add a executable .git/hooks/post_receive script that calls the script e.g.
#!/bin/sh
echo "Triggering the code deployment ..."
wget -q -O /dev/null http://example.com/deploy.php?sat=YourSecretAccessTokenFromDeployFile

Done!

Next time you push the code to the repository that has a hook enabled, it's going to trigger the deploy.php script which is going to pull the changes and update the code on the server machine.

For more info, read the source of deploy.php.


Inspired by a Gist by oodavid

About

Automated project deployment via Git and PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%