https://github.com/kimobrian/ember-client
Ember client app for https://github.com/kimobrian/server
https://github.com/kimobrian/ember-client
ember-cli ember-data emberjs
Last synced: about 1 month ago
JSON representation
Ember client app for https://github.com/kimobrian/server
- Host: GitHub
- URL: https://github.com/kimobrian/ember-client
- Owner: kimobrian
- License: mit
- Created: 2018-06-30T09:04:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-01T11:04:32.000Z (almost 7 years ago)
- Last Synced: 2025-05-15T23:13:18.801Z (about 1 month ago)
- Topics: ember-cli, ember-data, emberjs
- Language: JavaScript
- Size: 150 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Assessment
[Demo Heroku App](https://assessm-client.herokuapp.com/)
[](https://codeclimate.com/github/kimobrian/ember-client/maintainability)
[](https://codeclimate.com/github/kimobrian/ember-client/test_coverage)
[](https://travis-ci.com/kimobrian/ember-client)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.
* [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 and Running
* `git clone ` this repository
* `cd assessment`
* `npm install`
* Setup the server using the instruction from [THE SERVER REPO](https://github.com/kimobrian/server)
* 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
* `ember serve`
* Visit your app at [http://localhost:port](http://localhost:4444).
* Visit your tests at [http://localhost:port/tests](http://localhost:4444/tests).### 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
* [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/)