notebook/config/application.rb
Andrew Brown da3475c2c0 Fix test failures and enhance document revision functionality
- Fix root URL redirect expectations (now redirects to /my/dashboard instead of /my/content)
- Fix Timeline authorizer to allow universe contributors to edit shared timelines
- Add comprehensive document revision UI with version history and comparison
- Enhance document revision controller with proper permissions and navigation
- Add document folder association and improved folder management
- Update development environment for better debugging with Spring watcher
- Add development tools (bin/dev-restart script, Spring configuration)

Tests: Fixed 5 failures, all pinning tests pass

🤖 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-15 15:57:03 -07:00

47 lines
1.7 KiB
Ruby

require_relative 'boot'
require 'rails/all'
DEVELOPMENT_RAILS_GROUPS = 'web,worker'
if ENV['RAILS_GROUPS'].blank?
ENV['RAILS_GROUPS'] = DEVELOPMENT_RAILS_GROUPS
warn "RAILS_GROUPS is unset; defaulting to #{DEVELOPMENT_RAILS_GROUPS}"
elsif ENV['RAILS_GROUPS'] == 'assets'
puts "RAILS_GROUPS is set to assets (building assets on heroku)"
elsif ENV['RAILS_GROUPS'] != DEVELOPMENT_RAILS_GROUPS
warn "RAILS_GROUPS is set to #{ENV['RAILS_GROUPS']} instead of #{DEVELOPMENT_RAILS_GROUPS}"
end
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Notebook
class Application < Rails::Application
config.autoload_paths += Dir[Rails.root.join('app', 'models', '{*/}')]
config.autoload_paths += Dir[Rails.root.join('app', 'services', '{*/}')]
# Ensure authorizers are properly loaded
config.eager_load_paths += Dir[Rails.root.join('app', 'authorizers')]
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.0
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
config.active_job.queue_adapter = :sidekiq
config.after_initialize do
if ENV["MIGRATION_DATABASE_URL"].present?
puts "Connecting to migration database"
ActiveRecord::Base.establish_connection(ENV["MIGRATION_DATABASE_URL"])
end
end
end
end