Created
December 5, 2012 19:30
-
-
Save heyman/4218751 to your computer and use it in GitHub Desktop.
Revisions
-
heyman revised this gist
Dec 5, 2012 . 1 changed file with 6 additions and 2 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 @@ -5,14 +5,18 @@ export LANG=en_CA.UTF-8 # set up ruby env mkdir ruby-gems echo $HOME echo `pwd` export GEM_HOME=$HOME/.ruby-gems export PATH=$PATH:$HOME/.ruby-gems/bin # install SASS gem install sass --verbose # install foreman gem install foreman --verbose ls -al $HOME/.ruby-gems # build assets python manage.py assets build -
heyman created this gist
Dec 5, 2012 .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,18 @@ #!/usr/bin/env bash # set terminal to UTF8 (otherwise `gem install foreman` fails) export LANG=en_CA.UTF-8 # set up ruby env mkdir ruby-gems export GEM_HOME=$HOME/.ruby-gems export PATH=$PATH:$HOME/.ruby-gems/bin # install SASS gem install sass # install foreman gem install foreman # build assets python manage.py assets build