blob: f9f7a435953fc78e527914da319ad50d18eef15c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Git Deploy
Deploy and maintain a number of git repositories through PHP.
## Requirements
* PHP 5.4 or greater
* [Composer](http://getcomposer.org)
## Installation
1. Install Composer:
``` bash
$ php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));"
```
2. Use Composer to install Git Deploy:
``` bash
$ php composer.phar create-project robloach/git-deploy
```
## Usage
1. Create a `gh-pages-deploy.json` file:
``` json
{
"mywebsite": "https://github.com/my/website.git",
"myotherwebsite": "https://github.com/my/otherwebsite.git"
}
```
2. Execute GitHub Pages Deploy to deploy all sites:
``` bash
gh-pages-deploy/bin/gh-pages-deploy deploy
```
3. Set up a cron job to deploy every once in a while.
``` bash
gh-pages-deploy/bin/gh-pages-deploy deploy
```
## License
Licensed under the incredibly [permissive](http://en.wikipedia.org/wiki/Permissive_free_software_licence) [MIT license](http://creativecommons.org/licenses/MIT/)
Copyright © Rob Loach (http://robloach.net)
|