generate
Packages containing the application templates, scaffolds, and generators for the Revelry 2016 Name TBD stack.
Using
rails new app_name -m template.rb
or
bin/rake rails:template LOCATION=template.rb
This will generate an app using the default skeleton. The skeleton will give you further instructions from there.
node-base (default) skeleton
This provides a minimal skeleton for rails with rails-render-service and the revelry framework. After creating a new app with the template (see above), you can:
Start the rails server
rails s
Start the development render server
npm run devserver
(this will run the render server in node, and rebuild client & server-side JS and scss)
Scaffold a new resource
Just do:
rails g scaffold Article
like a normal rails app.