Skip to content

kimobrian/ember-client

Repository files navigation

Assessment

Demo Heroku App

Maintainability Test Coverage Build Status

Ember client app for https://github.com/kimobrian/server

This is a simple client side app build in Ember JS to work with the server app in the repo above ☝️

Prerequisites

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

Installation and Running

  • git clone <repository-url> this repository
  • cd assessment
  • npm install
  • Setup the server using the instruction from THE SERVER REPO
  • Set an environmental variable API_URL to the server URL. This can easily be done together while running the app using:
    • For example API_URL=http://localhost:5600 ember s

Running / Development

Running Tests

  • ember test
  • ember test --server

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Building

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

Further Reading / Useful Links