This is the LUG WSUCon website.
In order to build the site, you will need to install:
After installing the necessary platforms, you will need to install the project's Gem, NPM, and Bower dependencies.
Install Ruby Gems:
$ bundle install
Install NodeJS packages:
$ npm install
Install Bower packages:
$ bower install
Sensitive details are stored in a credentials.json
file, which is excluded from source control. Create this file with the following contents, filling in the values yourself:
{
"googleAnalyticsTrackingID": ""
}
After installing the project's dependencies, you can build the site with:
$ grunt build
The complete site can then be found under the dist
directory, ready to be deployed.
When deployment is supported, you will be able to deploy using:
$ grunt deploy
Note: It may also be valuable to be able to deploy to a staging environment, but that is not evident at this time.