Seed application for wilson web applications
Get up and running with your Wilson webapp in minutes
First you'll need to make sure you have Nodejs installed. The easiest way to get Nodejs fast is by using Homebrew. Find it here: [http://brew.sh/]
Once you have brew, run these commands:
brew install node
npm install -g grunt-cli
npm install -g yo
npm install -g hightail/generator-wilson
Now you just need to get the Wilson seed application. Just run this in your terminal:
curl -L https://github.com/hightail/wilson-seed/archive/1.0.2.zip > wilson-seed.zip; unzip wilson-seed.zip; rm wilson-seed.zip;
(NOTE: You can name the resulting directory with whatever name you'd like)
Next we need to get Wilson ready to run. Navigate in terminal into the resulting directory and run this:
npm install
Wilson should now be ready to go, so let's start the web server:
grunt develop