Asset compilation

Asset compilation is the practice of combining assets in one file so that the amount of network requests are greatly reduced to fetch the page.

We are using grunt to perform javascript compilation and compass for css compilation.

to compile javascript run grunt:

grunt

to compile css run compass:

compass watch .

Deploying assets.

This will be automated with a rake task, however for now it is manual.

Last updated