Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 953 Bytes

README.md

File metadata and controls

45 lines (30 loc) · 953 Bytes

README

Testing DockYard's Ember Admin: https://github.com/DockYard/ember-admin


ember g controller model-records
create app/controllers/admin/modelnames_controller.rb
     with class Admin::ModelnamesController < ApplicationController
     
in routes.rb add for each model
   namespace :admin do
      resources :modelnames
   end

add "ember-async-button": "^1.0.2" to emberapp's package.json
npm install

add "this.route('edit', { path: ':modelname_id/edit' });"  
to ember-admin/addon/router.js for each model that has relationships. 

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

  • Ruby version

  • System dependencies

  • Configuration

  • Database creation

  • Database initialization

  • How to run the test suite

  • Services (job queues, cache servers, search engines, etc.)

  • Deployment instructions

  • ...