venne/deployment

There is no license information available for the latest version (dev-master) of this package.

Deployment scripts for Venne framework.

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 0

pkg:composer/venne/deployment

dev-master 2013-09-12 14:14 UTC

This package is auto-updated.

Last update: 2025-09-29 01:27:23 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