Remove redundant configuration (identical to defaults)
This commit is contained in:
@@ -3,7 +3,6 @@ import Config
|
|||||||
# Configure your database
|
# Configure your database
|
||||||
config :music_library, MusicLibrary.Repo,
|
config :music_library, MusicLibrary.Repo,
|
||||||
database: Path.expand("../data/music_library_dev.db", __DIR__),
|
database: Path.expand("../data/music_library_dev.db", __DIR__),
|
||||||
cache_size: -64_000,
|
|
||||||
pool_size: 10,
|
pool_size: 10,
|
||||||
stacktrace: true,
|
stacktrace: true,
|
||||||
show_sensitive_data_on_connection_error: true
|
show_sensitive_data_on_connection_error: true
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ end
|
|||||||
|
|
||||||
config :music_library, MusicLibrary.Repo,
|
config :music_library, MusicLibrary.Repo,
|
||||||
auto_vacuum: :incremental,
|
auto_vacuum: :incremental,
|
||||||
temp_store: :memory,
|
|
||||||
load_extensions: [
|
load_extensions: [
|
||||||
MusicLibrary.Repo.extension_path("unicode"),
|
MusicLibrary.Repo.extension_path("unicode"),
|
||||||
MusicLibrary.Repo.extension_path("vec0")
|
MusicLibrary.Repo.extension_path("vec0")
|
||||||
@@ -100,7 +99,6 @@ if config_env() == :prod do
|
|||||||
# 128MB * pool_size = base memory usage
|
# 128MB * pool_size = base memory usage
|
||||||
cache_size: -128_000,
|
cache_size: -128_000,
|
||||||
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"),
|
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"),
|
||||||
temp_store: :memory,
|
|
||||||
show_sensitive_data_on_connection_error: false
|
show_sensitive_data_on_connection_error: false
|
||||||
|
|
||||||
background_database_path =
|
background_database_path =
|
||||||
|
|||||||
Reference in New Issue
Block a user