Automatically deploy the code using PHP and Git
Automatically deploy the code using PHP and Git.
git
and rsync
are required on the server that’s running the scripttar
is required for backup functionality (BACKUP_DIR
option).composer
is required for composer functionality (USE_COMPOSER
www-data
) needs to have the necessaryTMP_DIR
and TARGET_DIR
locations ondeploy-config.php
file.deploy-config.example.php
to deploy-config.php
and edit thedeploy.php
.https://github.com/USERNAME/REPOSITORY/settings/keys
and add your serverhttps://github.com/USERNAME/REPOSITORY/settings/hooks
.http://example.com/deploy.php?sat=YourSecretAccessTokenFromDeployFile
.https://bitbucket.org/USERNAME/REPOSITORY/admin/deploy-keys
and add yourhttps://bitbucket.org/USERNAME/REPOSITORY/admin/services
.http://example.com/deploy.php?sat=YourSecretAccessTokenFromDeployFile
..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
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
.
rsync
is used for deployment, the TARGET_DIR
doesn’t have to bedefine('TARGET_DIR', '[email protected]:/full/path/to/target_dir/');
is going to work as longdeploy.php
to something else, for example deploy_master.php
anddeploy_develop.php
and configure them separately. In that case, thedeploy_master-config.php
anddeploy_develop-config.php
respectively.If you find this script useful, consider donating BTC to 1fLnPZkMYw1TFNEsJZCciwDAmUhDw2wit
.