X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=config%2Fdev.exs;h=cfe3cce471915c740e4d66ef191076f393a11edd;hb=39127f15eb36c4fb41838a232f9d80c50416838d;hp=a697d3a24d2dcfef50de9561a22cdc8e4317e3db;hpb=460062f2b04220ffcd8f20aa842cc95582d1f849;p=akkoma diff --git a/config/dev.exs b/config/dev.exs index a697d3a24..cfe3cce47 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # For development, we disable any cache and enable # debugging and code reloading. @@ -7,12 +7,18 @@ use Mix.Config # watchers to your application. For example, we use it # with brunch.io to recompile .js and .css sources. config :pleroma, Pleroma.Web.Endpoint, - http: [port: 4000, protocol_options: [max_request_line_length: 8192, max_header_value_length: 8192]], + http: [ + port: 4000, + protocol_options: [max_request_line_length: 8192, max_header_value_length: 8192] + ], protocol: "http", debug_errors: true, code_reloader: true, check_origin: false, - watchers: [] + watchers: [], + secure_cookie_flag: false + +config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Local # ## SSL Support # @@ -46,8 +52,15 @@ config :pleroma, Pleroma.Repo, hostname: "localhost", pool_size: 10 -try do +config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: true + +if File.exists?("./config/dev.secret.exs") do import_config "dev.secret.exs" -rescue - _-> IO.puts("!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs") +else + IO.puts( + "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs" + ) end + +if File.exists?("./config/dev.exported_from_db.secret.exs"), + do: import_config("dev.exported_from_db.secret.exs")