From cb94651acc0e62142d5c98ad3bb243ad1ba55a5c Mon Sep 17 00:00:00 2001 From: Jordan Bracco Date: Sat, 17 Dec 2022 14:11:05 +0000 Subject: Nola rename, cont. pt. 5. Refs T77. Configs. find config -type f | xargs sed -i '' 's/LSG/Nola/g' find config -type f | xargs sed -i '' 's/lsg/nola/g' BREAKING CHANGE: Config keys switch from `:lsg` to `:nola` --- config/dev.exs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'config/dev.exs') diff --git a/config/dev.exs b/config/dev.exs index 25e7123..a2b97f8 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -6,7 +6,7 @@ use Mix.Config # The watchers configuration can be used to run external # watchers to your application. For example, we use it # with brunch.io to recompile .js and .css sources. -config :lsg, LSGWeb.Endpoint, +config :nola, NolaWeb.Endpoint, http: [port: 4012, ip: {0,0,0,0}], debug_errors: true, code_reloader: true, @@ -29,14 +29,14 @@ config :lsg, LSGWeb.Endpoint, # different ports. # Watch static and templates for browser reloading. -config :lsg, LSGWeb.Endpoint, +config :nola, NolaWeb.Endpoint, live_reload: [ patterns: [ ~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$}, ~r{priv/gettext/.*(po)$}, - ~r{lib/lsg_web/controllers/.*(ex)$}, - ~r{lib/lsg_web/views/.*(ex)$}, - ~r{lib/lsg_web/templates/.*(eex)$} + ~r{lib/nola_web/controllers/.*(ex)$}, + ~r{lib/nola_web/views/.*(ex)$}, + ~r{lib/nola_web/templates/.*(eex)$} ] ], watchers: [ -- cgit v1.2.3