Creating Ember.js application
1. Create Ember.js application
ember new ember-tutorials <ember project name>
2. Directory Structure
|--app |--config |--node_modules |--public |--tests |--vendor <other files> ember-cli-build.js package.json README.md testem.js
3. Start Ember.js application
ember serve
4. Welcome screen will display
http://localhost:4200 (default port is 4200)
5. Can change the port by modifying ".ember-cli".
Add "port": <port number>
Comments