Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msalahz/54ea123be91e22843a8b to your computer and use it in GitHub Desktop.
Save msalahz/54ea123be91e22843a8b to your computer and use it in GitHub Desktop.
Convert Ember resorce/route from normal Ember-Cli file structure to pods style

#Convert Ember resorce/route from normal Ember-Cli file structure to pods style

###Convert Ember resorce from normal Ember-Cli file structure to pods style

ember g resource dashboard

cp app/controllers/dashboard.js app/pods/dashboard/controller.js

cp app/routes/dashboard.js app/pods/dashboard/route.js

cp app/templates/dashboard.hbs app/pods/dashboard/template.hbs

###Convert Ember route from normal Ember-Cli file structure to pods style

ember g route dashboard/home

cp app/controllers/dashboard/home.js app/pods/dashboard/home/controller.js

cp app/routes/dashboard/home.js app/pods/dashboard/home/route.js

cp app/templates/dashboard/home.hbs app/pods/dashboard/home/template.hbs

###Note: use git bash comad line if you are on windows

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