Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 1.2 KB

README.md

File metadata and controls

66 lines (43 loc) · 1.2 KB

WSUCon Website

This is the LUG WSUCon website.

Building

Prerequisites

Platforms

In order to build the site, you will need to install:

Dependencies

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

Credentials

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": ""
}

How to Build

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.

Deploying

How to deploy

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.