Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Latest commit

 

History

History
64 lines (42 loc) · 1.56 KB

CONTRIBUTING.md

File metadata and controls

64 lines (42 loc) · 1.56 KB

How to Contribute

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone [email protected]:Addepar/emberconf-schedule-2019.git this repository
  • cd emberconf-schedule-2019
  • yarn install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Linting

  • yarn lint:hbs
  • yarn lint:js
  • yarn lint:js --fix

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Deployment to Heroku occurs automatically for the master branch

Updating Source Data

A Ruby rake task is included in this project's Rakefile that will update the contents of app/lib/data.js:

bundle install
bundle exec rake

Further Reading / Useful Links