Skip to content

Commit e56d085

Browse files
committed
Tidy - Elixir syntax prettifier
1 parent c4f99b7 commit e56d085

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

app/server/beam/tau/config/runtime.exs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ config :tau,
3636

3737
if config_env() == :dev do
3838
config :logger,
39-
backends: [{LoggerFileBackend, :tau_file_log}, :console]
39+
backends: [{LoggerFileBackend, :tau_file_log}, :console]
4040
else
4141
config :logger,
42-
backends: [{LoggerFileBackend, :tau_file_log}]
42+
backends: [{LoggerFileBackend, :tau_file_log}]
4343
end
4444

4545
config :logger, :tau_file_log,
@@ -80,15 +80,14 @@ config :tau, TauWeb.Endpoint,
8080
if config_env() == :dev do
8181
secret_key_base =
8282
System.get_env("SECRET_KEY_BASE") ||
83-
"pDakDMi+9PfJKYIHcdf7MGIog4NRPiuws5eUT6M6Kcg3Wad69hT+tVwOccyjfYJpDakDMi+9PfJKYIHcdf7MGIog4NRPiuws5eUT6M6Kcg3Wad69hT+tVwOccyjfYJ"
83+
"pDakDMi+9PfJKYIHcdf7MGIog4NRPiuws5eUT6M6Kcg3Wad69hT+tVwOccyjfYJpDakDMi+9PfJKYIHcdf7MGIog4NRPiuws5eUT6M6Kcg3Wad69hT+tVwOccyjfYJ"
8484

85-
config :tau, TauWeb.Endpoint,
86-
secret_key_base: secret_key_base
85+
config :tau, TauWeb.Endpoint, secret_key_base: secret_key_base
8786
end
8887

8988
# The block below contains prod specific runtime configuration.
9089
if config_env() == :prod do
91-
IO.puts "prod"
90+
IO.puts("prod")
9291
# The secret key base is used to sign/encrypt cookies and other secrets.
9392
# A default value is used in config/dev.exs and config/test.exs but you
9493
# want to use a different value for prod and you most likely don't want
@@ -100,6 +99,6 @@ if config_env() == :prod do
10099
environment variable SECRET_KEY_BASE is missing.
101100
You can generate one by calling: mix phx.gen.secret
102101
"""
103-
config :tau, TauWeb.Endpoint,
104-
secret_key_base: secret_key_base
102+
103+
config :tau, TauWeb.Endpoint, secret_key_base: secret_key_base
105104
end

0 commit comments

Comments
 (0)