1
0
Fork 0
thinking-in-stories-compone.../README.md
Ava Gaiety Wroten ec8ef5d1de Updated README
2022-04-05 12:35:57 -05:00

3 KiB

Thinking in Stories: Component-First

This is an example Ember app that was the result of live-coding at EmberConf 2022 focusing on Storybook and tests. This code is not intended to deploy in any meaningful capacity and is supplied merely as a reference and playground.

This readme explains how to get started with this project as well as lists all links referenced in the conference talk.

Prerequisites

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

Installation

  • git clone <repository-url> this repository
  • cd emberconf-2022
  • npm install

Running / Development

Ember

Storybook

  • npm run storybook

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

  • npm run lint
  • npm run lint:fix

Building

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