A skeleton for quickly starting a new static site. It uses Grunt to concatenate and minify JS files, compress images and recompile assets when changes are detected, SASS/Bourbon to facilitate rapid CSS, and Jekyll to generate static pages and run a web server.
You need to have Ruby and Node JS installed for the dependencies to work. If you're running OSX you most likely have Ruby installed already. If not, or if you need the latest and greatest, go here. Installers for Node JS can be found here.
npm install -g grunt-cli
cd static-site-starter
rake install
cd static-site-starter
gem install jekyll
gem install sass
npm install
rake serve
This will run a server for the project that can be accessed at http://localhost:4000. Changes to files will tell Jekyll/Grunt to automatically rebuild the site. Grunt will also run and compile SASS to CSS, compress images, compile/minify JS and compress images when it detects changes to any of these types of files.
FYI, Grunt and Jekyll don't play nice together sometimes, especially upon initial startup of the server. You're likely to see an unstyled page because the site has been compiled before the assets could be. Just change something and the resulting recompile should make everything fine.
rake build
If you're just looking for a quick static build of your project files this will run Grunt to compile all assets and then build the site to the /_site directory with Jekyll.
This doesn't seem to suffer from the uncompiled assets problem that running a server does because Jekyll specifically doesn't compile until Grunt has finished.