diff options
-rw-r--r-- | README.md | 26 |
1 files changed, 22 insertions, 4 deletions
@@ -12,12 +12,10 @@ Additionally, ```Git-Auto-Deploy``` can be configured to execute a shell command # Getting started -## Dependencies -* Git (tested on version 2.5.0) -* Python (tested on version 2.7) - ## Install from repository (recommended) +Before installing ```Git-Auto-Deploy```, make sure Python (tested on version 2.7) and Git (tested on version 2.5.0) is installed on your system. + ### Download and install git clone https://github.com/olipo186/Git-Auto-Deploy.git @@ -45,6 +43,26 @@ The easiest way to configure your system to automatically start ```Git-Auto-Depl *Tip:* You can also configure ```Git-Auto-Deploy``` to start automatically 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) |