/PlanetUIEmberJS

Ember implementation of the react-based PlanetUI demo project

Primary LanguageJavaScript

PlanetUI for EmberJS

This README details my initial experiments using EmberJS. I've chosen to re-write my PlanetUI demo project using EmberJS and note the differences between the two which will be the subject of an article to follow in a few days at: http://blog.waynejohnson.net.

The PlanetUI demo project (React version) was covered in the following article: http://blog.waynejohnson.net/reactjs_and_friends

PlanetUI in EmberJS

Prerequisites

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

  • Git
  • Node.js (nvm recommended and tested with Node version 14.17.0)
  • Ember CLI (npm install -g ember)
  • Yarn (optional - use npm otherwise) (npm install -g yarn)

Installation

  • git clone https://github.com/sausagejohnson/PlanetUIEmberJS
  • cd planetui
  • yarn install (or npm install)

Running / Development

Running Tests

  • ember test
  • ember test --server

Building

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

Further Reading / Useful Links