From a10fe85e26a043023fb3f846d301561518943362 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:27:56 +0100 Subject: [PATCH 1/7] Update INSTALL.md --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 1c928779..e8b284de 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,7 +5,7 @@ Django-orchestra ships with a set of management commands for automating some of These commands are meant to be run within a **clean** Debian-like distribution, you should be specially careful while following this guide on a customized system. -Django-orchestra can be installed on any Linux system, however it is **strongly recommended** to chose the reference platform for your deployment (Debian 8.0 jessie and Python 3.4). +Django-orchestra can be installed on any Linux system, however it is **strongly recommended** to chose the reference platform for your deployment (Debian 8.0 Jessie and Python 3.4). 1. Create a system user for running Orchestra From 69d6fa0194fca8015dd6950d50a16a1e7cebaba0 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:33:18 +0100 Subject: [PATCH 2/7] Update INSTALL.md --- INSTALL.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index e8b284de..8b78f3e9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -19,9 +19,7 @@ Django-orchestra can be installed on any Linux system, however it is **strongly 2. Install django-orchestra's source code ```bash sudo apt-get install python3-pip - sudo pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra + sudo pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev ``` 3. Install requirements From f2dd849cc7aca8121c1a0d0f4261dfa0c1bc64f8 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:33:36 +0100 Subject: [PATCH 3/7] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 50a60b96..919b9934 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,7 @@ python3 -mvenv env-django-orchestra source env-django-orchestra/bin/activate # Install Orchestra and its dependencies -pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra +pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev # The only non-pip required dependency for runing pip3 install is python3-dev sudo apt-get install python3-dev pip3 install -r http://git.io/orchestra-requirements.txt From eb41144131854f8b8e9dd0fe953c4dc016e6e356 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:34:04 +0100 Subject: [PATCH 4/7] Update deploy.sh --- scripts/containers/deploy.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/containers/deploy.sh b/scripts/containers/deploy.sh index 7ad2cbf1..5e5979a9 100644 --- a/scripts/containers/deploy.sh +++ b/scripts/containers/deploy.sh @@ -70,9 +70,7 @@ function install_orchestra () { run sudo orchestra-admin install_requirements --testing else # Install from pip - run sudo pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra + run sudo pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev run sudo orchestra-admin install_requirements fi } From f716c8482f5e3ad9bcba3da99c9e856c243d3ff8 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:39:40 +0100 Subject: [PATCH 5/7] Update INSTALL.md --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 8b78f3e9..535efc5d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -19,7 +19,7 @@ Django-orchestra can be installed on any Linux system, however it is **strongly 2. Install django-orchestra's source code ```bash sudo apt-get install python3-pip - sudo pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev + sudo pip3 install http://git.io/django-orchestra-dev ``` 3. Install requirements From 9880e3ecb3afde0cd3c8a22c53bb1d32ba763b31 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:40:04 +0100 Subject: [PATCH 6/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 919b9934..92cce599 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ python3 -mvenv env-django-orchestra source env-django-orchestra/bin/activate # Install Orchestra and its dependencies -pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev +pip3 install http://git.io/django-orchestra-dev # The only non-pip required dependency for runing pip3 install is python3-dev sudo apt-get install python3-dev pip3 install -r http://git.io/orchestra-requirements.txt From cbef54c544b47508de125a85831989f65d09fdf0 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Sat, 9 Jan 2016 11:40:34 +0100 Subject: [PATCH 7/7] Update deploy.sh --- scripts/containers/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/containers/deploy.sh b/scripts/containers/deploy.sh index 5e5979a9..755e2cdb 100644 --- a/scripts/containers/deploy.sh +++ b/scripts/containers/deploy.sh @@ -70,7 +70,7 @@ function install_orchestra () { run sudo orchestra-admin install_requirements --testing else # Install from pip - run sudo pip3 install http://github.com/glic3rinu/django-orchestra/tarball/master#egg=django-orchestra-dev + run sudo pip3 install http://git.io/django-orchestra-dev run sudo orchestra-admin install_requirements fi }