From 2b09611fe9093f2144c3f184ed386235fe5b0031 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sat, 7 Mar 2026 18:17:27 +0000 Subject: [PATCH] Mark TODOs to change secrets in base configuration --- config/config.exs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/config.exs b/config/config.exs index 36dc5552..55d9a8eb 100644 --- a/config/config.exs +++ b/config/config.exs @@ -31,7 +31,9 @@ config :music_library, :pagination, search_preview_limit: 5 config :music_library, MusicLibraryWeb, + # TODO: either move to dev or sobelow ignore login_password: "change me", + # TODO: either move to dev or sobelow ignore api_token: "change me" # Configures the endpoint @@ -53,6 +55,7 @@ config :music_library, LastFm, # refresh every 5 minutes refresh_interval: System.convert_time_unit(300, :second, :millisecond), api_key: "change me", + # TODO: either move to dev or sobelow ignore shared_secret: "change me", user_agent: user_agent, api_cooldown: 500 @@ -60,14 +63,17 @@ config :music_library, LastFm, config :music_library, MusicBrainz, user_agent: user_agent, api_cooldown: 500 config :music_library, Discogs, + # TODO: either move to dev or sobelow ignore personal_access_token: "change me", user_agent: user_agent, api_cooldown: 1000 config :music_library, Wikipedia, user_agent: user_agent +# TODO: either move to dev or sobelow ignore config :music_library, BraveSearch, api_key: "change me", user_agent: user_agent +# TODO: either move to dev or sobelow ignore config :music_library, OpenAI, api_key: "change me" # Configure esbuild (the version is required) @@ -122,6 +128,7 @@ config :swoosh, :api_client, Swoosh.ApiClient.Req config :music_library, MusicLibrary.Mailer, adapter: Swoosh.Adapters.Mailgun, + # TODO: either move to dev or sobelow ignore api_key: "change me", domain: "change me"