diff options
-rw-r--r-- | README.pod | 13 | ||||
-rwxr-xr-x | bin/make_css | 4 |
2 files changed, 13 insertions, 4 deletions
diff --git a/README.pod b/README.pod index 0aa480e13..4f39efb73 100644 --- a/README.pod +++ b/README.pod @@ -49,6 +49,10 @@ Copy conf/general-example.yml to conf/general.yml and update accordingly [FIXME! =item * +Generate the CSS by running bin/make_css + +=item * + Restart apache =back @@ -83,8 +87,8 @@ A webserver that supports FastCGI =item * -The CSS for FixMyStreet is generated from SASS sources so you will need a SASS -to CSS convertor. +The CSS for FixMyStreet is generated from SCSS sources so you will need a SCSS +to CSS convertor. You can get one from http://sass-lang.com/ =back @@ -220,6 +224,11 @@ BING_MAPS_API_KEY or GOOGLE_MAPS_API_KEY. If you are using a MaPit install you should update MAPIT_URL. +=head2 Generate CSS + +There is a script, bin/make_css, that uses L<sass|http://sass-lang.com/> to +convert the SCSS files to CSS files. + =head1 COMMON PROBLEMS =head2 CPAN MODULE PROBLEMS diff --git a/bin/make_css b/bin/make_css index 59acdb984..96c768acc 100755 --- a/bin/make_css +++ b/bin/make_css @@ -2,8 +2,8 @@ # # make_css: # Generate CSS files from SCSS files. -# Curerntly the CSS files are also in version control, though I guess -# in future they don't need to be, and compressed style could then be used. +# +# Requires sass which you can get from http://sass-lang.com/ # # Copyright (c) 2011 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org |