Creating Our Application
In this lesson, we will start creating our Ember application.
Creating a new application
To create an Ember application, we need Ember-CLI, a command line tool for developing ember apps. To install Ember-CLI on your local computer, you can view this lesson. There is no need to install Ember-CLI as we have already done that for you.
We can start creating our application because we have all the tools needed for our application in Ember-CLI.
In your local terminal, you can go to the folder where you would like to store your application and create a new Ember-CLI project using the following command:
$ ember new rarwee --no-welcome
Just click on the terminal widget below and you will see a new Ember-CLI project being created.
This will create the directory structure Ember-CLI works with and install the required npm packages. The --no-welcome
...