First install Node.js. Then:
npm install -g bower
npm install -g phantomjs
This app requires EmberCLI to be installed. You can install it via npm using npm install -g ember-cli
.
But the recommended way is to install via git repo.
git clone https://github.com/stefanpenner/ember-cli.git
cd ember-cli
npm link
ember new contacto
cd contacto
npm link ember-cli
$ bower install --save bootstrap-sass-official
$ npm install --save-dev broccoli-sass
Rename app/styles/app.css
to app/styles/app.scss
Import the bootstrap in app/styles/app.scss
@import 'vendor/bootstrap-sass-official/assets/stylesheets/bootstrap';
For Bootstrap glyphicons to work properly, we need to make the tree, merge and export in Brocfile.js
For this, we need some extra packages to be installed:
npm install --save-dev broccoli-static-compiler
npm install --save-dev broccoli-merge-trees
The replace Brocfile.js
content:
module.exports = app.toTree();
with
// Put the bootstrap fonts in the place that the bootstrap css expects to find them.
var pickFiles = require('broccoli-static-compiler');
var bootstrapFonts = pickFiles('vendor/bootstrap-sass-official/assets/fonts/bootstrap', {
srcDir: '/',
destDir: '/assets/bootstrap'
});
// Merge the bootstrapFonts with the ember app tree
var mergeTrees = require('broccoli-merge-trees');
module.exports = mergeTrees([app.toTree(),bootstrapFonts]);
$ ember server
and open http://localhost:4200
$ ember g adapter application
import DS from 'ember-data';
export default DS.RESTAdapter.extend({
host: 'http://boiling-shore-3684.herokuapp.com'
});
ember g model contact
import DS from 'ember-data';
export default DS.Model.extend({
first : DS.attr('string'),
last : DS.attr('string'),
fullName: function() {
return this.get('first') + ' ' + this.get('last');
}.property('first', 'last')
});
ember g route index
import Ember from 'ember';
export default Ember.Route.extend({
redirect: function() {
this.transitionTo('contacts.index');
}
});
ember g route contacts/index
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return this.store.find('contact');
}
});
import Ember from 'ember';
var Router = Ember.Router.extend({
location: ContactoENV.locationType
});
Router.map(function() {
this.resource('contacts', { path: '/contacts' }, function() {
this.route('show', { path: '/:id' });
});
});
export default Router;
ember g template contacts/index
@import 'vendor/bootstrap-sass-official/assets/stylesheets/bootstrap';
html, body {
margin-top: 30px;
}
.img-circle {
width: 25px;
height: 25px
}
.list-group-item {
padding: 8px 10px;
}
$ ember g route contacts/show
import Ember from 'ember';
export default Ember.Route.extend({
model: function(params) {
return this.store.find('contact', params.id);
}
});
Remaining code is at https://github.com/millisami/contacto