diff options
author | Jordan Bracco <href@random.sh> | 2022-12-17 14:11:05 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | cb94651acc0e62142d5c98ad3bb243ad1ba55a5c (patch) | |
tree | 1cec80ef2f14bf7e94d8f159e82f2b51d299247e /config/dev.exs | |
parent | Nola rename, cont. pt. 4. Refs T77. (diff) |
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`
Diffstat (limited to '')
-rw-r--r-- | config/dev.exs | 10 |
1 files changed, 5 insertions, 5 deletions
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: [ |