diff options
author | lain <lain@soykaf.club> | 2018-03-30 15:01:53 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-03-30 15:01:53 +0200 |
commit | 4afbef39f49948ddd3b1cd1bbda58ff7e3ac2785 (patch) | |
tree | 6959e12d9058c981f3b69c77b8b0290049651cd6 /config/dev.exs | |
parent | 480932c8e524e1a80c9c8ef1a1aa23379f633afe (diff) | |
download | pleroma-4afbef39f49948ddd3b1cd1bbda58ff7e3ac2785.tar.gz |
Format the code.
Diffstat (limited to 'config/dev.exs')
-rw-r--r-- | config/dev.exs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/dev.exs b/config/dev.exs index a697d3a24..7b06ad67e 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -7,7 +7,10 @@ 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, @@ -49,5 +52,8 @@ config :pleroma, Pleroma.Repo, try 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") + _ -> + IO.puts( + "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs" + ) end |