scinote-web/lib/generators/addon/templates/README.md
2018-05-21 15:31:05 +02:00

863 B

SciNote addon - ${ADDON_NAME}

How to include this addon inside main SciNote application

  • Inside Gemfile, add the following reference:
gem '${FULL_UNDERSCORE_NAME}',
    path: 'addons/${ADDON_NAME}'
  • Inside config/routes.rb, add the following reference:
mount ${NAME}::Engine => '/'
  • If you have any addon-specific JavaScript code, add the following reference inside app/assets/javascripts/application.js.erb:
//= require ${FOLDERS_PATH}
  • If you have any addon-specific CSS code, add the following reference inside app/assets/stylesheets/application.scss (starting comment):
 *= require ${FOLDERS_PATH}/application

Then, do the following:

  1. Run make docker,
  2. Run make cli -> rake db:migrate,
  3. (optional) setup any addon initializers/settings,
  4. Start application (make run)!