Last active
March 2, 2017 23:57
-
-
Save superhighfives/0589063ec46f9cfd61683dd2f571b767 to your computer and use it in GitHub Desktop.
Rails 5 API + ActiveAdmin + create-react-app on Heroku
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'boot' | |
require "rails" | |
# Pick the frameworks you want: | |
require "active_model/railtie" | |
require "active_job/railtie" | |
require "active_record/railtie" | |
require "action_controller/railtie" | |
require "action_mailer/railtie" | |
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) | |
module ListOfIngredients | |
class Application < Rails::Application | |
# Settings in config/environments/* take precedence over those specified here. | |
# Application configuration should go into files in config/initializers | |
# -- all .rb files in that directory are automatically loaded. | |
# 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.app_generators.scaffold_controller = :scaffold_controller | |
config.middleware.use Rack::MethodOverride | |
config.middleware.use ActionDispatch::Flash | |
config.middleware.use ActionDispatch::Cookies | |
config.middleware.use ActionDispatch::Session::CookieStore | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment