-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
499faa2
commit fedff67
Showing
28 changed files
with
1,030 additions
and
258 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env ruby | ||
exec "./bin/rails", "server", *ARGV |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env ruby | ||
APP_PATH = File.expand_path('../config/application', __dir__) | ||
require_relative '../config/boot' | ||
require 'rails/commands' | ||
APP_PATH = File.expand_path("../config/application", __dir__) | ||
require_relative "../config/boot" | ||
require "rails/commands" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env ruby | ||
require_relative '../config/boot' | ||
require 'rake' | ||
require_relative "../config/boot" | ||
require "rake" | ||
Rake.application.run |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env ruby | ||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
# explicit rubocop config increases performance slightly while avoiding config confusion. | ||
ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__)) | ||
|
||
load Gem.bin_path("rubocop", "rubocop") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env ruby | ||
require "fileutils" | ||
|
||
APP_ROOT = File.expand_path("..", __dir__) | ||
|
||
def system!(*args) | ||
system(*args, exception: true) | ||
end | ||
|
||
FileUtils.chdir APP_ROOT do | ||
# This script is a way to set up or update your development environment automatically. | ||
# This script is idempotent, so that you can run it at any time and get an expectable outcome. | ||
# Add necessary setup steps to this file. | ||
|
||
puts "== Installing dependencies ==" | ||
system("bundle check") || system!("bundle install") | ||
|
||
# puts "\n== Copying sample files ==" | ||
# unless File.exist?("config/database.yml") | ||
# FileUtils.cp "config/database.yml.sample", "config/database.yml" | ||
# end | ||
|
||
puts "\n== Preparing database ==" | ||
system! "bin/rails db:prepare" | ||
|
||
puts "\n== Removing old logs and tempfiles ==" | ||
system! "bin/rails log:clear tmp:clear" | ||
|
||
unless ARGV.include?("--skip-server") | ||
puts "\n== Starting development server ==" | ||
STDOUT.flush # flush the output before exec(2) so that it displays | ||
exec "bin/dev" | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
load Gem.bin_path("thruster", "thrust") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,45 @@ | ||
require_relative "boot" | ||
|
||
require "rails" | ||
# 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 "active_storage/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 Monolithium | ||
class Application < Rails::Application | ||
config.action_cable.disable_request_forgery_protection = true | ||
config.active_record.schema_format = :sql | ||
config.generators.system_tests = nil | ||
# Initialize configuration defaults for originally generated Rails version. | ||
config.load_defaults 7.2 | ||
|
||
# Please, add to the `ignore` list any other `lib` subdirectories that do | ||
# not contain `.rb` files, or that should not be reloaded or eager loaded. | ||
# Common ones are `templates`, `generators`, or `middleware`, for example. | ||
config.autoload_lib(ignore: %w[assets tasks]) | ||
|
||
# Configuration for the application, engines, and railties goes here. | ||
# | ||
# These settings can be overridden in specific environments using the files | ||
# in config/environments, which are processed later. | ||
# | ||
# config.time_zone = "Central Time (US & Canada)" | ||
# config.eager_load_paths << Rails.root.join("extras") | ||
|
||
# Don't generate system test files. | ||
config.generators.system_tests = nil | ||
config.active_record.schema_format = :sql | ||
config.action_cable.disable_request_forgery_protection = true | ||
config.skylight.probes << "active_job" | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,73 @@ | ||
require "active_support/core_ext/integer/time" | ||
|
||
Rails.application.configure do | ||
config.action_mailer.perform_caching = false | ||
config.action_mailer.raise_delivery_errors = false | ||
config.active_job.queue_adapter = :sidekiq | ||
config.active_record.migration_error = :page_load | ||
config.active_storage.service = :local | ||
config.active_support.deprecation = :log | ||
config.assets.debug = true | ||
config.assets.quiet = true | ||
config.cache_classes = false | ||
config.consider_all_requests_local = true | ||
# Settings specified here will take precedence over those in config/application.rb. | ||
|
||
# Make code changes take effect immediately without server restart. | ||
config.enable_reloading = true | ||
|
||
# Do not eager load code on boot. | ||
config.eager_load = false | ||
|
||
# Show full error reports. | ||
config.consider_all_requests_local = true | ||
|
||
# Enable server timing. | ||
config.server_timing = true | ||
|
||
# Enable/disable Action Controller caching. By default Action Controller caching is disabled. | ||
# Run rails dev:cache to toggle Action Controller caching. | ||
if Rails.root.join("tmp/caching-dev.txt").exist? | ||
config.action_controller.perform_caching = true | ||
config.cache_store = :memory_store | ||
config.public_file_server.headers = { | ||
"Cache-Control" => "public, max-age=#{2.days.seconds.to_i}" | ||
} | ||
config.action_controller.enable_fragment_cache_logging = true | ||
config.public_file_server.headers = {"cache-control" => "public, max-age=#{2.days.to_i}"} | ||
else | ||
config.action_controller.perform_caching = false | ||
config.cache_store = :null_store | ||
end | ||
|
||
# Change to :null_store to avoid any caching. | ||
config.cache_store = :memory_store | ||
|
||
# Store uploaded files on the local file system (see config/storage.yml for options). | ||
config.active_storage.service = :local | ||
|
||
# Don't care if the mailer can't send. | ||
config.action_mailer.raise_delivery_errors = false | ||
|
||
# Make template changes take effect immediately. | ||
config.action_mailer.perform_caching = false | ||
|
||
# Set localhost to be used by links generated in mailer templates. | ||
config.action_mailer.default_url_options = {host: "localhost", port: 3000} | ||
|
||
# Print deprecation notices to the Rails logger. | ||
config.active_support.deprecation = :log | ||
|
||
# Raise an error on page load if there are pending migrations. | ||
config.active_record.migration_error = :page_load | ||
|
||
# Highlight code that triggered database queries in logs. | ||
config.active_record.verbose_query_logs = true | ||
|
||
# Append comments with runtime information tags to SQL queries in logs. | ||
config.active_record.query_log_tags_enabled = true | ||
|
||
# Highlight code that enqueued background job in logs. | ||
config.active_job.verbose_enqueue_logs = true | ||
config.active_job.queue_adapter = :sidekiq | ||
|
||
# Raises error for missing translations. | ||
# config.i18n.raise_on_missing_translations = true | ||
|
||
# Annotate rendered view with file names. | ||
config.action_view.annotate_rendered_view_with_filenames = true | ||
|
||
# Uncomment if you wish to allow Action Cable access from any origin. | ||
# config.action_cable.disable_request_forgery_protection = true | ||
|
||
# Raise error when a before_action's only/except options reference missing actions. | ||
config.action_controller.raise_on_missing_callback_actions = true | ||
|
||
# Apply autocorrection by RuboCop to files generated by `bin/rails generate`. | ||
# config.generators.apply_rubocop_autocorrect_after_generate! | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,89 @@ | ||
require "active_support/core_ext/integer/time" | ||
|
||
Rails.application.configure do | ||
# Settings specified here will take precedence over those in config/application.rb. | ||
|
||
# Code is not reloaded between requests. | ||
config.enable_reloading = false | ||
|
||
# Eager load code on boot for better performance and memory savings (ignored by Rake tasks). | ||
config.eager_load = true | ||
|
||
# Full error reports are disabled. | ||
config.consider_all_requests_local = false | ||
|
||
# Turn on fragment caching in view templates. | ||
config.action_controller.perform_caching = true | ||
config.action_mailer.perform_caching = false | ||
config.active_job.queue_adapter = :sidekiq | ||
config.active_record.dump_schema_after_migration = false | ||
|
||
# Cache assets for far-future expiry since they are all digest stamped. | ||
config.public_file_server.headers = {"cache-control" => "public, max-age=#{1.year.to_i}"} | ||
|
||
# Enable serving of images, stylesheets, and JavaScripts from an asset server. | ||
# config.asset_host = "http://assets.example.com" | ||
|
||
# Store uploaded files on the local file system (see config/storage.yml for options). | ||
config.active_storage.service = :amazon | ||
config.active_support.deprecation = :notify | ||
config.assets.compile = false | ||
config.cache_classes = true | ||
config.consider_all_requests_local = false | ||
config.eager_load = true | ||
|
||
# Assume all access to the app is happening through a SSL-terminating reverse proxy. | ||
config.assume_ssl = true | ||
|
||
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. | ||
config.force_ssl = true | ||
config.i18n.fallbacks = true | ||
config.log_formatter = Logger::Formatter.new | ||
config.log_level = :debug | ||
|
||
# Skip http-to-https redirect for the default health check endpoint. | ||
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } } | ||
|
||
# Log to STDOUT with the current request id as a default log tag. | ||
config.log_tags = [:request_id] | ||
config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present? | ||
config.read_encrypted_secrets = true | ||
|
||
if ENV["RAILS_LOG_TO_STDOUT"].present? | ||
logger = ActiveSupport::Logger.new($stdout) | ||
logger.formatter = config.log_formatter | ||
config.logger = ActiveSupport::TaggedLogging.new(logger) | ||
end | ||
config.logger = ActiveSupport::TaggedLogging.logger($stdout) | ||
|
||
# Change to "debug" to log everything (including potentially personally-identifiable information!) | ||
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info") | ||
|
||
# Prevent health checks from clogging up the logs. | ||
config.silence_healthcheck_path = "/up" | ||
|
||
# Don't log any deprecations. | ||
config.active_support.report_deprecations = false | ||
|
||
# Replace the default in-process memory cache store with a durable alternative. | ||
# config.cache_store = :mem_cache_store | ||
|
||
# Replace the default in-process and non-durable queuing backend for Active Job. | ||
config.active_job.queue_adapter = :sidekiq | ||
|
||
# Ignore bad email addresses and do not raise email delivery errors. | ||
# Set this to true and configure the email server for immediate delivery to raise delivery errors. | ||
# config.action_mailer.raise_delivery_errors = false | ||
|
||
# Set host to be used by links generated in mailer templates. | ||
config.action_mailer.default_url_options = {host: "example.com"} | ||
|
||
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit. | ||
# config.action_mailer.smtp_settings = { | ||
# user_name: Rails.application.credentials.dig(:smtp, :user_name), | ||
# password: Rails.application.credentials.dig(:smtp, :password), | ||
# address: "smtp.example.com", | ||
# port: 587, | ||
# authentication: :plain | ||
# } | ||
|
||
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to | ||
# the I18n.default_locale when a translation cannot be found). | ||
config.i18n.fallbacks = true | ||
|
||
# Do not dump schema after migrations. | ||
config.active_record.dump_schema_after_migration = false | ||
|
||
# Only use :id for inspections in production. | ||
config.active_record.attributes_for_inspect = [:id] | ||
|
||
# Enable DNS rebinding protection and other `Host` header attacks. | ||
# config.hosts = [ | ||
# "example.com", # Allow requests from example.com | ||
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com` | ||
# ] | ||
# | ||
# Skip DNS rebinding protection for the default health check endpoint. | ||
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } } | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,53 @@ | ||
# The test environment is used exclusively to run your application's | ||
# test suite. You never need to work with it otherwise. Remember that | ||
# your test database is "scratch space" for the test suite and is wiped | ||
# and recreated between test runs. Don't rely on the data there! | ||
|
||
Rails.application.configure do | ||
# Settings specified here will take precedence over those in config/application.rb. | ||
|
||
# While tests run files are not watched, reloading is not necessary. | ||
config.enable_reloading = false | ||
|
||
# Eager loading loads your entire application. When running a single test locally, | ||
# this is usually not necessary, and can slow down your test suite. However, it's | ||
# recommended that you enable it in continuous integration systems to ensure eager | ||
# loading is working properly before deploying your code. | ||
config.eager_load = ENV["CI"].present? | ||
|
||
# Configure public file server for tests with cache-control for performance. | ||
config.public_file_server.headers = {"cache-control" => "public, max-age=3600"} | ||
|
||
# Show full error reports. | ||
config.consider_all_requests_local = true | ||
config.cache_store = :null_store | ||
|
||
# Render exception templates for rescuable exceptions and raise for other exceptions. | ||
config.action_dispatch.show_exceptions = :rescuable | ||
|
||
# Disable request forgery protection in test environment. | ||
config.action_controller.allow_forgery_protection = false | ||
config.action_controller.perform_caching = false | ||
config.action_dispatch.show_exceptions = false | ||
config.action_mailer.delivery_method = :test | ||
config.action_mailer.perform_caching = false | ||
config.active_record.dump_schema_after_migration = false | ||
|
||
# Store uploaded files on the local file system in a temporary directory. | ||
config.active_storage.service = :test | ||
|
||
# Tell Action Mailer not to deliver emails to the real world. | ||
# The :test delivery method accumulates sent emails in the | ||
# ActionMailer::Base.deliveries array. | ||
config.action_mailer.delivery_method = :test | ||
|
||
# Set host to be used by links generated in mailer templates. | ||
config.action_mailer.default_url_options = {host: "example.com"} | ||
|
||
# Print deprecation notices to the stderr. | ||
config.active_support.deprecation = :stderr | ||
config.cache_classes = true | ||
config.consider_all_requests_local = true | ||
config.eager_load = false | ||
config.public_file_server.enabled = true | ||
config.public_file_server.headers = { | ||
"Cache-Control" => "public, max-age=#{1.hour.seconds.to_i}" | ||
} | ||
|
||
# Raises error for missing translations. | ||
# config.i18n.raise_on_missing_translations = true | ||
|
||
# Annotate rendered view with file names. | ||
# config.action_view.annotate_rendered_view_with_filenames = true | ||
|
||
# Raise error when a before_action's only/except options reference missing actions. | ||
config.action_controller.raise_on_missing_callback_actions = true | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# Be sure to restart your server when you modify this file. | ||
|
||
# Version of your assets, change this if you want to expire all your assets. | ||
Rails.application.config.assets.version = "1.0" | ||
|
||
# Add additional assets to the asset load path. | ||
# Rails.application.config.assets.paths << Emoji.images_path |
Oops, something went wrong.