From 93b56a5bccd8640e2e090a484ad304da1e937b58 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 3 Jun 2012 22:55:42 -0400 Subject: [PATCH 1/3] Add fabfile instructions to README.MD file --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 000f5f57a3..99165bc671 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Mayan -============= +===== Open source, Django based document manager with custom metadata indexing, file serving integration and OCR capabilities. @@ -13,6 +13,24 @@ Open source, Django based document manager with custom metadata indexing, file s [Mailing list (via Google Groups)](http://groups.google.com/group/mayan-edms) + +Quick install +------------- +To bootstrap **Mayan EDMS** via the fabfile without having to clone the +entire repository, run the following command, replacing the part that +reads: with your current MySQL root password +or the MySQL root password you plan to assign to it, during the MySQL +installation when executing the fabfile. + +* Debian or Ubuntu:: + + $ cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + +* Fedora:: + + $ cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + + License ------- This project is open sourced under [GNU GPL Version 3](http://www.gnu.org/licenses/gpl-3.0.html). @@ -20,7 +38,7 @@ This project is open sourced under [GNU GPL Version 3](http://www.gnu.org/licens Author ------ -Roberto Rosario - [Twitter](http://twitter.com/#siloraptor) [E-mail](mailto://roberto.rosario.gonzalez_at_gmail) +Roberto Rosario - [Twitter](http://twitter.com/#siloraptor) [E-mail](mailto://roberto.rosario_at_gmail) Donations From e3aab5c0f9f09722b209bc40213bc7eaf1415ce0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 3 Jun 2012 23:00:02 -0400 Subject: [PATCH 2/3] Update fabfile url --- README.md | 8 ++++---- docs/intro/installation.rst | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 99165bc671..d9b3b4f32b 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ reads: with your current MySQL root password or the MySQL root password you plan to assign to it, during the MySQL installation when executing the fabfile. -* Debian or Ubuntu:: +- Debian or Ubuntu: - $ cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install -* Fedora:: +- Fedora: - $ cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install License diff --git a/docs/intro/installation.rst b/docs/intro/installation.rst index 780724d8d9..ac5731db21 100644 --- a/docs/intro/installation.rst +++ b/docs/intro/installation.rst @@ -16,11 +16,11 @@ installation when executing the fabfile. * Debian or Ubuntu:: - $ cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + $ cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install * Fedora:: - $ cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://raw.github.com/rosarior/mayan/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + $ cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install The ``fabfile`` also supports deploying to more than one server whether From 2d95824535779ba21b5c2b077b0352455555ad5e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 3 Jun 2012 23:03:54 -0400 Subject: [PATCH 3/3] Update README.md escaped chars --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9b3b4f32b..cd19415193 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@ installation when executing the fabfile. - Debian or Ubuntu: - cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + cd /tmp && sudo apt-get install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=<Your MySQL root password>" > ~/.fabricrc && fab -H localhost install - Fedora: - cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=" > ~/.fabricrc && fab -H localhost install + cd /tmp && sudo yum install -y fabric wget tar gzip && wget https://github.com/rosarior/mayan/raw/master/contrib/fabfile.tar.gz -O - | tar -xvzf - && echo "database_manager_admin_password=<Your MySQL root password>" > ~/.fabricrc && fab -H localhost install License