aboutsummaryrefslogtreecommitdiff
path: root/config/dev.exs
diff options
context:
space:
mode:
Diffstat (limited to 'config/dev.exs')
-rw-r--r--config/dev.exs7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/dev.exs b/config/dev.exs
index 4faaeff5b..ab3e83c12 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,10 +54,15 @@ 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
IO.puts(
+ :stderr,
"!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs"
)
end