Styling Our Templates
Learn how to add styles in Ember templates.
Creating our e-eommerce application
Let’s create a new application named eCommerceApp
by running the following command in the directory:
$ ember new eCommerceApp --no-welcome
This command creates an application skeleton. The --no-welcome
flag tells Ember to create an application without a welcome page. After we create the application, let’s run the server using the following command:
Press + to interact
$ npm start'or'$ ember server'or'$ ember s
The ember s
command ...
Get hands-on with 1400+ tech skills courses.