You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.7 KiB

8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
8 years ago
  1. require_relative 'boot'
  2. require 'rails/all'
  3. # Require the gems listed in Gemfile, including any gems
  4. # you've limited to :test, :development, or :production.
  5. Bundler.require(*Rails.groups)
  6. require_relative '../app/lib/exceptions'
  7. require_relative '../lib/paperclip/gif_transcoder'
  8. require_relative '../lib/paperclip/video_transcoder'
  9. require_relative '../lib/mastodon/version'
  10. Dotenv::Railtie.load
  11. module Mastodon
  12. class Application < Rails::Application
  13. # Settings in config/environments/* take precedence over those specified here.
  14. # Application configuration should go into files in config/initializers
  15. # -- all .rb files in that directory are automatically loaded.
  16. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
  17. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
  18. # config.time_zone = 'Central Time (US & Canada)'
  19. # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
  20. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
  21. config.i18n.available_locales = [
  22. :en,
  23. :ar,
  24. :bg,
  25. :de,
  26. :eo,
  27. :es,
  28. :fa,
  29. :fi,
  30. :fr,
  31. :hr,
  32. :hu,
  33. :id,
  34. :io,
  35. :it,
  36. :ja,
  37. :nl,
  38. :no,
  39. :oc,
  40. :pl,
  41. :pt,
  42. :'pt-BR',
  43. :ru,
  44. :uk,
  45. :'zh-CN',
  46. :'zh-HK',
  47. :'zh-TW',
  48. ]
  49. config.i18n.default_locale = :en
  50. # config.paths.add File.join('app', 'api'), glob: File.join('**', '*.rb')
  51. # config.autoload_paths += Dir[Rails.root.join('app', 'api', '*')]
  52. config.active_job.queue_adapter = :sidekiq
  53. config.middleware.insert_before 0, Rack::Cors do
  54. allow do
  55. origins '*'
  56. resource '/@:username', headers: :any, methods: [:get], credentials: false
  57. resource '/api/*', headers: :any, methods: [:post, :put, :delete, :get, :patch, :options], credentials: false, expose: ['Link', 'X-RateLimit-Reset', 'X-RateLimit-Limit', 'X-RateLimit-Remaining', 'X-Request-Id']
  58. resource '/oauth/token', headers: :any, methods: [:post], credentials: false
  59. end
  60. end
  61. config.middleware.use Rack::Attack
  62. config.middleware.use Rack::Deflater
  63. # babel config can be found in .babelrc
  64. config.browserify_rails.commandline_options = '--transform babelify --extension=".jsx"'
  65. config.browserify_rails.evaluate_node_modules = true
  66. config.to_prepare do
  67. Doorkeeper::AuthorizationsController.layout 'public'
  68. Doorkeeper::AuthorizedApplicationsController.layout 'admin'
  69. Doorkeeper::Application.send :include, ApplicationExtension
  70. end
  71. end
  72. end