Browse Source
Fix some dev config
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
chapril^2
Thomas Citharel
3 weeks ago
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with
1 additions and
17 deletions
-
.gitignore
-
config/dev.exs
|
|
@ -14,6 +14,7 @@ erl_crash.dump |
|
|
|
# secrets files as long as you replace their contents by environment |
|
|
|
# variables. |
|
|
|
/config/*.secret.exs |
|
|
|
/config/runtime.exs |
|
|
|
|
|
|
|
/setup_db.psql |
|
|
|
|
|
|
|
|
|
@ -97,20 +97,3 @@ config :mobilizon, :anonymous, |
|
|
|
reports: [ |
|
|
|
allowed: true |
|
|
|
] |
|
|
|
|
|
|
|
require Logger |
|
|
|
|
|
|
|
cond do |
|
|
|
System.get_env("INSTANCE_CONFIG") && |
|
|
|
File.exists?("./config/#{System.get_env("INSTANCE_CONFIG")}") -> |
|
|
|
import_config System.get_env("INSTANCE_CONFIG") |
|
|
|
|
|
|
|
System.get_env("DOCKER", "false") == "false" && File.exists?("./config/dev.secret.exs") -> |
|
|
|
import_config "dev.secret.exs" |
|
|
|
|
|
|
|
System.get_env("DOCKER", "false") == "true" -> |
|
|
|
Logger.info("Using environment configuration for Docker") |
|
|
|
|
|
|
|
true -> |
|
|
|
Logger.error("No configuration file found") |
|
|
|
end |