Last active
September 26, 2015 11:12
-
-
Save brianherbert/e321df16af8fb8201bc4 to your computer and use it in GitHub Desktop.
Revisions
-
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -30,4 +30,6 @@ sudo ln -s /usr/bin/nodejs /usr/bin/node bin/update # Make sure .htaccess is named properly mv httpdocs/template.htaccess httpdocs/.htaccess # You should now have the platform running locally at http://192.168.33.110/ - feel free to "exit" your SSH session -
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ cd platform vagrant up vagrant provision # SSH into your new vagrant box so we can fill in the gaps where the Puppet manifest left off. vagrant ssh cd /var/www -
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,7 @@ # Assumptions: You have vagrant and VirtuaBox installed on your machine # Virtual Box https://www.virtualbox.org/ # Vagarant http://www.vagrantup.com/ # Get the Ushahidi Platform from GitHub and stick it in a directory mkdir v3install cd v3install -
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,8 @@ # Get the Ushahidi Platform from GitHub and stick it in a directory mkdir v3install cd v3install git clone [email protected]:ushahidi/platform.git cd platform # Fire up a vagrant box and provision it. I encountered warnings and errors but soldier on. vagrant up -
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Get the Ushahidi Platform from GitHub and stick it in a directory mkdir v3install cd v3install/platform git clone [email protected]:ushahidi/platform.git # Fire up a vagrant box and provision it. I encountered warnings and errors but soldier on. -
brianherbert renamed this gist
Jul 22, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
brianherbert revised this gist
Jul 22, 2014 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,28 @@ # Get the Ushahidi Platform from GitHub and stick it in a directory mkdir v3install cd v3install git clone [email protected]:ushahidi/platform.git # Fire up a vagrant box and provision it. I encountered warnings and errors but soldier on. vagrant up vagrant provision # SSH into your new vagrant box so we can fill in the gaps where the Puppet manifest left blank. vagrant ssh cd /var/www # Install composer, node, npm and bower curl -sS https://getcomposer.org/installer | php sudo apt-get update sudo apt-get install nodejs sudo apt-get install npm sudo npm install -g bower # Bower expects node to be at "node" and not "nodejs" so symlink it. sudo ln -s /usr/bin/nodejs /usr/bin/node # Run all of our updates with this handy script bin/update # Make sure .htaccess is named properly mv httpdocs/template.htaccess httpdocs/.htaccess -
brianherbert created this gist
Jul 22, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ mkdir v3install cd v3install git clone [email protected]:ushahidi/platform.git vagrant up vagrant provision vagrant ssh cd /var/www curl -sS https://getcomposer.org/installer | php sudo apt-get update sudo apt-get install nodejs sudo apt-get install npm sudo npm install -g bower sudo ln -s /usr/bin/nodejs /usr/bin/node bin/update mv httpdocs/template.htaccess httpdocs/.htaccess