/ember-questions-n-answers

EPICODUS: JAVASCRIPT | Week 3: Solo Project | Questions n Answers Message Board (Ember) | Week 4: Solo Project | QnA Continued (Ember)

Primary LanguageJavaScript

Questions n Answers

Epicodus: JavaScript (Week 3 Solo Project), August 19, 2016

Epicodus: JavaScript (Week 4 Solo Project), August 26, 2016 | Continuation

By Marty Fitchen

Description

This is an Epicodus student solo project using Ember to build a message board that allows users to add questions, edit questions, and add answers. Users should be able to see all questions on the index page as well as be able to add new questions. Users should also be able to visit a questions dynamic route and see and add answers to the question. See specs below:

Project Requirements & Objectives Complete
Required: Create a question and answer message board where a user submits a question and other users can respond with answers. X
Objectives: Application template contains header with link(s). X
Objective: Data is stored in and retrieved from Ember Data models and Firebase. X
Objectives: Components are used to create display and behavior for your templates. X
Objective: One-to-many relationship exists between Question and Answers. X
Objective: Application works as expected. X
Objective: Project is in a polished, portfolio-quality state. X

Description - Continuation

This is an Epicodus student solo project using Ember to continue building upon a message board that allows users to see how many answers each question has with a computed property. Using a helper questions will display a star icon for questions with two or more answers. And finally integrate a service that allows users to create a list of favorite questions to reference later. See continuation specs below:

Project Requirements & Objectives Complete
Required: Continue developing the Question and Answer message board application from last week's independent project and code review by integrating the Ember features and functionality we learned this week. X
Objectives: Implement a computed property. X
Objective: Add a helper. X
Objective: Integrate a service. X
Objective: Implement a feature that uses a Firebase query. X

Prerequisites

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

Installation

  • git clone <repository-url> this repository
  • change into the new directory
  • npm install
  • bower install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Building

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

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links

License

MIT License

Copyright (c) 2016 Marty Fitchen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.