Skip to content

Instantly share code, notes, and snippets.

@sydlawrence
Created August 10, 2011 18:24
Show Gist options
  • Save sydlawrence/1137698 to your computer and use it in GitHub Desktop.
Save sydlawrence/1137698 to your computer and use it in GitHub Desktop.
My bash script which literally makes a new html / css / js website with boilerplate and compass support
#!/bin/bash
echo "creating project $1"
compass create $1 -r html5-boilerplate -u html5-boilerplate --javascripts-dir js --css-dir css
echo "Project created"
cd $1
echo "Watching for scss changes"
compass watch
@sydlawrence
Copy link
Author

usage : $ ./makewebsite test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment