venne / deployment
There is no license information available for the latest version (dev-master) of this package.
Deployment scripts for Venne framework.
dev-master
2013-09-12 14:14 UTC
Requires
- php: >=5.3.2
This package is auto-updated.
Last update: 2024-10-29 04:30:51 UTC
README
Installation
By Git:
git clone git://github.com/Venne/deployment.git
rm -fr deployment/.git
By Composer:
composer create-project venne/deployment:dev-master --prefer-dist
Optionally you can install hooks for git:
php deployment/bin/install.php
How to use
Export installation:
php deployment/bin/export.php
Import installation:
php deployment/bin/import.php
Deployment with Git
Run in sandbox only first time:
composer create-project venne/deployment:dev-master --prefer-dist
git init
php deployment/bin/install.php
git add *
git commit -m "first commit"
git remote add origin <$server>
git checkout -b production
git push origin production
When you want to deploy current production branch:
git push