Procedural planet generator using WebGL made for the course TNM084 (Procedural Methods for Images) at Linköping University.
Make sure you have Node.js installed. Then, install
grunt-cli
and our our dependencies using:
npm install -g grunt-cli
npm install
Run the application for development:
grunt dev
Then open localhost:3000
in your browser (preferably
Chrome(ium)).
Build it for deployment:
grunt deploy
This builds, minifies and hashes the JS, followed by appending the hash to the
file name. This busts the cache if the file has changed. (It also changes the
reference to the js file in index.html
.)
Then deploy this to your favourite static hosting solution.