Epicodus-JavaScript, Week 2 Independent Project 08.11.2017
This app allows the user to enter a question, and other users to enter answers to said question. The app displays questions as links, and can be answered on their individual pages.
You will need the following things properly installed on your computer.
You will also need a Firebase account if you wish to use your own database. Follow prompts to add the app to your database. Edit the 'firebase' section of environment.js with your own information.
- ember-cli
- emberfire
- ember-bootstrap
The app will use ember-cli and its myriad of pre-loaded assets.
git clone <repository-url>this repositorycd amanpm install
ember serve- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate for more details
ember testember test --server
ember build(development)ember build --environment production(production)
| Behavior | Input | Output |
|---|---|---|
| User visits home page, chooses to ask question | Click ask question button | Home page displays form to enter question |
| User enters question | How do I install nodejs? | Question displays on home page as link with author's name |
| User views a question | Click any question link | Question page displays with the content, edit and delete buttons, and an answer button |
| User chooses to answer question | Click answer button | A form to enter answer displays on the question page |
| User enters answer | Go to nodejs site and follow directions | The answer displays below the question along with previous answers |
MIT License
Copyright © 2017 Nathan Stewart
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.