Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any good tutorial or Ember.js document describing directory structure for models / views / controllers, app.js and the way to reference those files in the index.html root file.

  • File to create the "Ember.Application.create" ?
  • order of inclusion (models.js, apps.js, controllers.js) ?
share|improve this question

3 Answers

up vote 3 down vote accepted

I have a layout that I am pretty happy with

app.js - this is the main application file and includes settings and the router

views.js - contains views used within the app, although I usually now split this out to homeView.js navigtaionView.js etc

dataModels.js - this is where I hold all my data model objects for the app

dataSources.js - I use this to load datamodels or arrays of datamodels from any api calls I make

accountController.js - controller class, in the attached sample I also have an emailMessagingController and an smsMessagingController

You can find my sample project here

https://github.com/bwship/neptunejs

and the coffeescript files for ember here

https://github.com/bwship/neptunejs/tree/master/public/coffeescripts

and finally the jad file for the layout and index showing how I add these here

https://github.com/bwship/neptunejs/tree/master/views

I do want to eventually start using the ember data style, but have put out a few solid apps using the dataSources and dataModels files.

share|improve this answer

The ember-skeleton project has a reasonable example of project layout for rake pipeline. They do it something like this (from the README):

ember-skeleton
├── Assetfile - App build file
├── Gemfile - Package dependencies for rakep/rack
├── Gemfile.lock - Here be dragons: don't touch, always include
├── app - App specific code
│   ├── css - App CSS or SCSS (.scss)
│   ├── lib - App code, *modularized during build*
│   ├── modules - Module code, *already modularized*
│   ├── plugins - Plugins (e.g. jquery.jsonrpc.js)
│   │   └── loader.js - JS module loader
│   ├── static - Static files, never touched, copied over during build
│   ├── templates - Handlebars templates, *modularized during build*
│   ├── tests - QUnit application tests
│   └── vendor - Vendor code, *modularized during build*
├── assets - Built out asset files, minified in production
│   ├── app.css - Built out app CSS/SCSS
│   ├── app.js - Built out app JS
│   └── loader.js - Built out JS module loader
├── config.ru - Rack development web server configuration
├── index.html - The app entry point
├── tests - QUnit testing files
│   ├── index.html - The testing entry point
│   ├── qunit - Testing support files
│   └── run-tests.js - The PhantomJS QUnit test runner
└── tmp - Temporary build files used by rakep
share|improve this answer

This tutorial by Dan Gebhardt was very helpful to me in setting up my project structure and figuring out how to include files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.