Ember js default bundle

126 Views Asked by At

I make ember project from this guide . But i have something like default application - routes and etc . How can i delete this and start from scratch ?

1

There are 1 best solutions below

0
On

This guide is how to start ember using ember-cli. I am sure this is the main road to build ember apps. Ember-cli has conventional directory-files structure, you could see it when you run ember new my-app-name. For example all routes are in the app/routes directory and etc. You may delete all files/directories you don't need, but all files you use (or ember-cli uses) must be in the conventional directory.

As far as I understand, you'd like to begin with something simpler. You can start with simple html file, using any default jsbin you like, for example http://emberjs.jsbin.com/?html,css,js,output

Community usually use such jsbins for demonstrating issues. See jsbins collection here https://gist.github.com/rwjblue/8816372