Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 2.23 KB

README.md

File metadata and controls

62 lines (40 loc) · 2.23 KB

This project uses GitHub Actions for continuous integration.

What's New in Emberland

This is an overview app of Ember-related Github activity used by the investigative folks over at The Ember Times to find new, relevant topics for the newsletter.

Prerequisites

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

Setup

After forking this repo on GitHub, please try the following steps:

  • git clone <your-forked-repository-url>
  • cd whats-new-in-emberland
  • pnpm i
  • You will need to create a GitHub personal access token. Each token that you create already comes with a suitable set of permissions to read public repos. This set of permissions is enough to run whats-new-in-emberland. There's no need for you to select additional permissions in the token generation wizard.
  • Create an .env file using the .env-sample included in the repo, then add your Github personal access token to the file.

Running / Development

Code Generators

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

Running Tests

  • pnpm test
  • pnpm test:ember --server

Linting

  • pnpm lint
  • pnpm lint:fix

Building

  • pnpm ember build (development)
  • pnpm build (production)

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links