Skip to content

Instantly share code, notes, and snippets.

@nickdenardis
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save nickdenardis/e017bcc72ef16a6f5e30 to your computer and use it in GitHub Desktop.

Select an option

Save nickdenardis/e017bcc72ef16a6f5e30 to your computer and use it in GitHub Desktop.
Learning Ember

Learning Ember

Install the Ember CLI

npm install -g ember-cli

Generate a new project

ember new testember
cd testember

Start the local server

ember server

Enable routing without hashes

# app.js

App.Router.reopen({
  location: 'history'
});

# .htaccess

FallbackResource /index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment