From 24ee8487d6fddbc18de8c9f6f5b68b35f18046d3 Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Tue, 21 Mar 2017 14:33:10 +0200 Subject: [PATCH] updated the amazon web server info, and added a readme for SASS use Changes to be committed: modified: share/templates/readmes/aws.md new file: share/templates/readmes/sass.md --- share/templates/readmes/aws.md | 4 ++-- share/templates/readmes/sass.md | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 share/templates/readmes/sass.md diff --git a/share/templates/readmes/aws.md b/share/templates/readmes/aws.md index 6f7b15b..64582ea 100644 --- a/share/templates/readmes/aws.md +++ b/share/templates/readmes/aws.md @@ -264,8 +264,8 @@ add the following: sudo pip install virtualenv sudo pip install virtualenvwrapper - cat "WORKON_HOME=~/.virtualenvs" >> .bashrc - cat ". /usr/local/bin/virtualenvwrapper.sh" >> .bashrc + echo "WORKON_HOME=~/.virtualenvs" >> .bashrc + echo ". /usr/local/bin/virtualenvwrapper.sh" >> .bashrc ### install nginx diff --git a/share/templates/readmes/sass.md b/share/templates/readmes/sass.md new file mode 100644 index 0000000..8841319 --- /dev/null +++ b/share/templates/readmes/sass.md @@ -0,0 +1,20 @@ +##Sass + +### How to set up sass watch with multiple directories + +```` +sass -I share/media/projectwide_sass_files + --watch code/apps/sassdir:code/apps/cssdir +```` + + +### How to get vim to work with a sass file include + +```` +let g:syntastic_sass_sass_args=" + -I /Full/share/media/projectwide_sass_files" +```` + +[fixing syntastic check args](http://stackoverflow.com/questions/29041876/fixing-syntasticcheck-bootstrap-error-vim-syntastic-plugin) + +[syntastic manual](https://github.com/vim-syntastic/syntastic/blob/master/doc/syntastic.txt) \ No newline at end of file