summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-05-18 20:30:02 +0200
committerOliver Poignant <oliver@poignant.se>2016-05-18 20:30:02 +0200
commit710f05b02a6ff762ea4113a3478cd337b209ca54 (patch)
tree212eceb038b19ca56ee07c620379789e33bcab1b
parentfb3f7ae2f86e1b486dc3083a59607dee2994a647 (diff)
parentb70b66a2d28528e0d817d5394b852cd0254bae40 (diff)
downloadGit-Auto-Deploy-710f05b02a6ff762ea4113a3478cd337b209ca54.zip
Git-Auto-Deploy-710f05b02a6ff762ea4113a3478cd337b209ca54.tar.gz
Git-Auto-Deploy-710f05b02a6ff762ea4113a3478cd337b209ca54.tar.bz2
Merge branch 'master' of github.com:olipo186/Git-Auto-Deploy
-rw-r--r--README.md42
1 files changed, 21 insertions, 21 deletions
diff --git a/README.md b/README.md
index c4d5900..c889043 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,27 @@ Additionally, ```Git-Auto-Deploy``` can be configured to execute a shell command
You can install ```Git-Auto-Deploy``` in multiple ways. Below are instructions for the most common methods.
-## Install from repository (recommended)
+## Install from PPA (recommended for debian systems)
+
+Add our PPA repository.
+
+ sudo add-apt-repository ppa:olipo186/git-auto-deploy
+ sudo apt-get update
+
+Install ```Git-Auto-Deploy``` using apt.
+
+ sudo apt-get install git-auto-deploy
+
+Modify the configuration file to match your project setup. [Read more about the configuration options](./docs/Configuration.md).
+
+ nano /etc/git-auto-deploy.conf.json
+
+Start ```Git-Auto-Deploy``` and check it's status.
+
+ service git-auto-deploy start
+ service git-auto-deploy status
+
+## Install from repository (recommended for other systems)
When installing ```Git-Auto-Deploy``` from the repository, you'll need to make sure that Python (tested on version 2.7) and Git (tested on version 2.5.0) is installed on your system.
@@ -38,26 +58,6 @@ To start ```Git-Auto-Deploy``` automatically on boot, open crontab in edit mode
You can also configure ```Git-Auto-Deploy``` to start on boot using a init.d-script (for Debian and Sys-V like init systems) or a service for systemd. [Read more about starting Git-Auto-Deploy automatically using init.d or systemd](./docs/Start automatically on boot.md).
-## Install from PPA (recommended for debian systems)
-
-Add our PPA repository.
-
- sudo add-apt-repository ppa:olipo186/git-auto-deploy
- sudo apt-get update
-
-Install ```Git-Auto-Deploy``` using apt.
-
- sudo apt-get install git-auto-deploy
-
-Modify the configuration file to match your project setup. [Read more about the configuration options](./docs/Configuration.md).
-
- nano /etc/git-auto-deploy.conf.json
-
-Start ```Git-Auto-Deploy``` and check it's status.
-
- service git-auto-deploy start
- service git-auto-deploy status
-
## Alternative installation methods
* [Install as a python module (experimental)](./docs/Install as a python module.md)