Skip to content

Instantly share code, notes, and snippets.

@adelowo
Created April 22, 2020 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adelowo/29bb8df1065231766c8f7e27730e4ea9 to your computer and use it in GitHub Desktop.
Save adelowo/29bb8df1065231766c8f7e27730e4ea9 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
require_relative 'boot'
require 'rails'
require 'dotenv'
# Pick the frameworks you want:
require 'active_model/railtie'
require 'active_job/railtie'
require 'active_record/railtie'
require 'active_storage/engine'
require 'action_controller/railtie'
require 'action_mailer/railtie'
require 'action_mailbox/engine'
require 'action_text/engine'
require 'action_view/railtie'
require 'action_cable/engine'
# require "sprockets/railtie"
require 'rails/test_unit/railtie'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
Dotenv.load
module Server
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 6.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.
# Only loads a smaller set of middleware suitable for API only apps.
# Middleware like session, flash, cookies can be added back manually.
# Skip views, helpers and assets when generating a new resource.
config.api_only = true
config.stream_api_key = ENV['API_KEY']
config.stream_api_secret = ENV['API_SECRET']
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment