Creating Your App

Welcome to the Ember Tutorial! This tutorial is meant to introduce basic Ember concepts while creating a professional looking application. If you get stuck at any point during the tutorial, feel free to download https://github.com/ember-learn/super-rentals for a working example of the completed app.

You can install the latest version of Ember CLI by following the Quick Start guide "Installing Ember" section.

Ember CLI, Ember's command line interface, provides a standard project structure, a set of development tools, and an addon system. This allows Ember developers to focus on building apps rather than building the support structures that make them run. From your command line, a quick ember --help shows the commands Ember CLI provides. For more information on a specific command, type ember help .

Creating a New App

To create a new project using Ember CLI, use the new command. In preparation for the tutorial in the next section, you can make an app called super-rentals .

ember new super-rentals A new project will be created inside your current directory. You can now go to your super-rentals project directory and start working on it.
cd super-rentals