Ember Application Skeleton
Ember Core Libraries
Ember use this libraries when create your app.
Application Directory
The project structure contains the following directories:
- app: Application main source code. This folder contains your ember application.
- config: Configuration and environments
- public: Assets (images, fonts)
- tests
- vendor: Dependencies that aren’t manage by npm.
- ember-cli-build.js: File for specify how ember should build your app.
- dist: Deploy assets
App Directory
By default, your app directory contains a lot of directories. Every directory describe a feature of ember.
I think that the most important part about Ember is understand how it works. Because at the end of the day you will have to built your application in this way. So, if you are confused, don't worry because this workshop is about this. In the next chapter we are going to review the most important concepts, and step by step we will build a simple application.