-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
5 changed files
with
63 additions
and
51 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
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,54 @@ | ||
require File.expand_path('../boot', __FILE__) | ||
|
||
require 'decko/application' | ||
|
||
module DeckoOrg | ||
class Application < Decko::Application | ||
# Wagn inherits Rails configuration options. See http://guides.rubyonrails.org/configuring.html | ||
|
||
# Email configuration | ||
|
||
config.default_html_view = :content | ||
config.encoding = "utf-8" | ||
# config.cache_store = :dalli_store, [] | ||
config.action_mailer.perform_deliveries = false | ||
# config.email_defaults = { :from => 'noreply@decko.org' } | ||
# config.action_mailer.smtp_settings = { :address => 'johannes.wikirate.org' } | ||
# config.action_mailer.delivery_method = ... | ||
# config.action_mailer.smtp_settings = ... | ||
|
||
# Example configuration for mailcatcher, a simple smtp server. | ||
# See http://mailcatcher.me for more information | ||
# config.action_mailer.delivery_method = :smtp | ||
# config.action_mailer.smtp_settings = { address: "localhost", port: 1025 } | ||
|
||
# The below keys are fine for testing but should not be used in production sites. | ||
|
||
|
||
# config.read_only = true | ||
# defaults to false | ||
# disallows creating, updating, and deleting cards. | ||
|
||
# config.cache_store = :file_store, 'tmp/cache' | ||
# determines caching mechanism. options include: file_store, memory_store, mem_cache_store, dalli_store... | ||
# | ||
# for production, we highly recommend memcache | ||
# here's a sample configuration for use with the dalli gem | ||
# config.cache_store = :dalli_store, [] | ||
|
||
# config.paths['files'] = 'files' | ||
# where uploaded files are actually stored. (eg Image and File cards) | ||
|
||
# config.paths['mod'] << 'my-mod-dir' | ||
# add a new directory for code customizations, or "mods" | ||
|
||
# config.allow_inline_styles = false | ||
# don't strip style attributes (not recommended) | ||
|
||
# config.override_host = nil | ||
# don't autodetect host (example.com) from web requests | ||
|
||
# config.override_protocol = nil | ||
# don't autodetect protocol (http/https) from web requests | ||
end | ||
end |
Submodule card-mods
updated
55 files