Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install ruby 3.3.x (if needed)

  2. Update gems, and migrate DB

    Code Block
    bundle install --with production --without development test 
    RAILS_ENV=production bundle exec rake db:migrate
  3. Install node.js 20.x (if needed)

  4. Update JS dependencies

    Code Block
    yarn install # in Avalon root dir
  5. Update configuration, see Config changes above

  6. Generate credentials (if needed)

    Code Block
    bundle exec rails credentials:edit
  7. Restart passenger (if using)

    Code Block
    passenger-config restart-app

...