Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rimian/ember-quiz-app
- Owner: rimian
- License: mit
- Created: 2019-08-17T10:12:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T02:18:26.000Z (about 2 years ago)
- Last Synced: 2024-05-02T00:08:21.283Z (9 months ago)
- Language: JavaScript
- Size: 2.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)