Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rimian/ember-quiz-app

A small app for rendering quizzes
https://github.com/rimian/ember-quiz-app

Last synced: about 2 months ago
JSON representation

A small app for rendering quizzes

Awesome Lists containing this project

README

        

# Ember Quiz App

This is a basic Ember app demonstrating a quiz with questions and answers.

The form button will allow the user to transition to the next test when all the answers are correct.

There's no CSS or UX alerts or flash messages at this stage. This is only to show that the quiz actually works.

**Note: There may be an error running this locally due to an upstream package. See install instructions below**

## Prerequisites

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

* [Git](https://git-scm.com/)
* [Node.js](https://nodejs.org/) (with npm)
* [Ember CLI](https://ember-cli.com/)
* [Google Chrome](https://google.com/chrome/)

## Installation

* `git clone ` this repository
* `cd ember-quiz-app`
* `npm install`

## Running / Development

* `ember serve`
* Visit your app at [http://localhost:4200](http://localhost:4200).
* Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).

Note: `ember serve` is currently broken (2019-08-18). You may see an error `port already in use`

If you see this error, start this app by running:

`ember serve -p 0`

See: https://stackoverflow.com/questions/57535688/ember-serve-every-port-is-in-use

### 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:hbs`
* `npm run lint:js`
* `npm run lint:js -- --fix`

### Building

* `ember build` (development)
* `ember build --environment production` (production)

### Deploying

Specify what it takes to deploy your app.

## Further Reading / Useful Links

* [ember.js](https://emberjs.com/)
* [ember-cli](https://ember-cli.com/)
* Development Browser Extensions
* [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
* [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)