diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 6 | ||||
-rw-r--r-- | config/dev.exs | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/config/config.exs b/config/config.exs index 2d3f35e70..b53660ce4 100644 --- a/config/config.exs +++ b/config/config.exs @@ -706,6 +706,12 @@ config :ex_aws, http_client: Pleroma.HTTP.ExAws config :pleroma, :instances_favicons, enabled: false +config :pleroma, :frontends, + primary: %{"name" => "none", "ref" => "none"}, + mastodon: %{"name" => "mastodon", "ref" => "none"}, + admin: %{"name" => "admin", "ref" => "none"}, + static: true + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env()}.exs" diff --git a/config/dev.exs b/config/dev.exs index 128e91dca..4faaeff5b 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -54,12 +54,6 @@ config :pleroma, Pleroma.Repo, config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: true -config :pleroma, :frontends, - primary: %{"name" => "pleroma", "ref" => "5d49edc8"}, - mastodon: %{"name" => "mastodon", "ref" => "b1e42686"}, - admin: %{"name" => "admin", "ref" => "d7eaf61a"}, - static: true - if File.exists?("./config/dev.secret.exs") do import_config "dev.secret.exs" else |