Questions tagged [ember-app-kit]

Ember App Kit (EAK) is a robust starter kit for developing applications in Ember.js. EAK makes it easy to develop, build, test, and deploy applications independent of any back-end build process.

From the project page:

Ember App Kit (EAK) is a robust starter kit for developing applications in Ember.js. EAK makes it easy to develop, build, test, and deploy applications independent of any back-end build process.

98 questions
10
votes
1 answer

How can I access a bower package as an ES6 module?

I'm trying to migrate an ember app to use the ember app-kit. The code requires the accounting.js library. In the pre-app-kit version the file was loaded via a script tag in index.html
Tom Close
  • 590
  • 4
  • 11
9
votes
5 answers

Login after successful signup Ember-Simple-Auth

I have set up a auto-authenticate for user after signup: app/libs/auto-authenticate.js export default Ember.SimpleAuth.Authenticators.OAuth2.extend({ authenticate: function(credentials) { …
Pranaya Behera
  • 535
  • 1
  • 8
  • 24
7
votes
1 answer

testing an ember app - ember.js find() helper acceptable selectors

Trying to test-drive my first ember.js app. Using ember app kit. Puzzled by how qunit works with selectors (I assumed that jquery selectors would work, and they do - for the most part...). My handlebars has this code: {{#link-to 'locations.new'…
apprenticeDev
  • 7,813
  • 3
  • 18
  • 25
6
votes
2 answers

Wrapping my head around Ember App Kit -differences compared to working with plain Ember

I have begun using ember app kit and heave read through its guides. However I having trouble wrapping my head around the differences between a regular app and this way that Ember App Kit structures the various bits using ES6 modules instead of…
bguiz
  • 22,661
  • 40
  • 140
  • 226
5
votes
1 answer

Ember App Kit: Set Resolver outside of Ember.Application.create()

To keep it short: Is it possible to set up the Resolver of the application outside of the Ember.Application.create() block? Ideally, I would like to set the Resolver in a Ember.Application.initializer#initialize() function. Something like: import…
herom
  • 2,522
  • 24
  • 40
5
votes
3 answers

Ember App Kit with ember data

I'm trying to start a new project with ember app kit and ember data using ES6. I've managed to create a store using the following code in adapter.js var ApplicationAdapter = DS.FixtureAdapter.extend(); export default ApplicationAdapter; However,…
Gevious
  • 3,063
  • 2
  • 18
  • 40
4
votes
2 answers

Use multiple layout in EmberJS

I have a web application that needs to use different layout depending where it is. Basically, if I'm inside the page "Profile", I would like to use a specific app layout and a specific page layout. If I'm going to another page "Messages", I would…
alexmngn
  • 7,551
  • 14
  • 57
  • 117
4
votes
1 answer

Ember appkit - debugging

We are currently using requirejs/backbone for development and firebug for debugging. We are thinking of moving to Ember and using ember appkit. I noticed that because of the new ES6 javascript modules, the application needs to be pre-compiled into…
jax
  • 34,985
  • 56
  • 167
  • 267
3
votes
1 answer

Grunt crashing after warning "unexpected end of input" on expressServer task - OS X Yosemite, Ember App Kit

I was away from our Rails + Ember project, and didn't realize that my local environment had totally broken with upgrade to OS X Yosemite. A number of steps were remedied (e.g. fixing /usr/local/ permissions for homebrew or getting an earlier version…
apprenticeDev
  • 7,813
  • 3
  • 18
  • 25
3
votes
1 answer

From Design to Development: Is there a common EmberJS workflow?

This question is subjective by nature, but I am curious about a specific thing, so hopefully there is a decent answer. I tend to be a little old fashioned and like to create all my pages static and get the design just the way I like it (or at least…
Grapho
  • 1,606
  • 14
  • 31
3
votes
2 answers

Structuring Ember application in subdirectories using Ember App Kit

The directory structure in Ember App Kit dictates that all controllers go in the '/app/controllers/' directory; handlebars templates go in the '/app/templates/' directory, and so on. However, my team are currently developing an Ember application in…
user665909
  • 51
  • 1
  • 2
3
votes
1 answer

Getting urls without hashes in Ember.js on Github Pages

I wanted to get rid of ugly hash tags in my url (www.example.com/#/projects/id -> www.example.com/projects/id). So I added Router.reopen({ location: 'history' }); This works if I open my app to the root www.example.com, and click on a link-to I…
Savanaly
  • 347
  • 2
  • 10
3
votes
4 answers

Adding firebase & emberfire dependencies to an ember.js app (ember-cli)

I'm an emberjs begginer and I have been searching how to add the "firebase" and "emberfire" dependencies to my ember application that I created using ember-cli. I used bower to install these 2 dependencies but I get this error: Firebase is not…
Badr Tazi
  • 679
  • 1
  • 6
  • 20
3
votes
0 answers

Ember App Kit: Importing Dependencies which would otherwise reside in App namespace

Until now I developed my Ember.js projects following the structure & codes of @trek github project which uses the grunt-neuter dependency to glue everything together. I created many util classes that my application needs, all within the App.…
herom
  • 2,522
  • 24
  • 40
3
votes
0 answers

Ember App Kit - Which way to register Handlebars Helper

Over at the Ember App Kit website one can see two methods to create Handlebars helper methods where the first one (can be seen here) uses the following steps: export default a function which takes two arguments and dasherize the file name so that…
herom
  • 2,522
  • 24
  • 40
1
2 3 4 5 6 7