Example Application Tutorial for Ember.js 2.8
You will need the following things properly installed on your computer.
-
Clone in your project folder repository from GitHub:
git clone git://github.com/ipcross/library-app.git
-
Change to the application directory:
cd library-app
-
Install node and bowel packages:
npm install && bower install
-
Copy config/environment.js.example to config/environment.js and edit this file in order to configure your settings.
cp config/environment.js.example config/environment.js
-
Launch the application with Ember server:
ember server
-
Open the application in your browser:
http://localhost:4200
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Thanks to all our awesome contributors
Copyright (c) 2016 Dmitry Alifanov. See MIT-LICENSE for details.