diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-07-14 09:02:55 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-07-14 09:02:55 -0500 |
commit | 1a2fe96d56350dc685eb53112630af567de8d5bd (patch) | |
tree | 31f5c24d81ab1a226776158d4bb1a62ef72c8834 /config/dev.exs | |
parent | 167e14416bec2846d3282a121cfcfd147a04a8bf (diff) | |
parent | 173e977e283789a814278c63bc81f40a13942e21 (diff) | |
download | pleroma-1a2fe96d56350dc685eb53112630af567de8d5bd.tar.gz pleroma-1a2fe96d56350dc685eb53112630af567de8d5bd.zip |
Merge remote-tracking branch 'pleroma/develop' into admin-api-users-date
Diffstat (limited to 'config/dev.exs')
-rw-r--r-- | config/dev.exs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/dev.exs b/config/dev.exs index 4faaeff5b..6b7ffb0e9 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. @@ -54,6 +54,10 @@ config :pleroma, Pleroma.Repo, config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: true +# Reduce recompilation time +# https://dashbit.co/blog/speeding-up-re-compilation-of-elixir-projects +config :phoenix, :plug_init_mode, :runtime + if File.exists?("./config/dev.secret.exs") do import_config "dev.secret.exs" else |