diff --git a/config/config.exs b/config/config.exs index c5c5bd8..5b909f1 100644 --- a/config/config.exs +++ b/config/config.exs @@ -1,59 +1,59 @@ # This file is responsible for configuring your application # and its dependencies with the aid of the Mix.Config module. # # This configuration file is loaded before any dependency and # is restricted to this project. use Mix.Config config :logger, level: :debug config :logger, :console, format: "$date $time [$level$levelpad] $metadata$message\n", metadata: :all config :phoenix, :json_library, Jason # General application configuration config :nola, namespace: Nola config :nola, :data_path, "priv" config :nola, :brand, name: "Nola", source_url: "https://phab.random.sh/source/Nola/" config :ex_aws, region: "us-east-1", host: "s3.wasabisys.com", s3: [ host: "s3.wasabisys.com", region: "us-east-1", scheme: "https://" ] # Configures the endpoint config :nola, NolaWeb.Endpoint, url: [host: "localhost"], secret_key_base: "cAFb7x2p/D7PdV8/C6Os18uygoD0FVQh3efNEFc5+5L529q3dofZtZye/BG12MRZ", render_errors: [view: NolaWeb.ErrorView, accepts: ~w(html json)], server: true, live_view: [signing_salt: "CHANGE_ME_FFS"], pubsub: [name: Nola.PubSub, adapter: Phoenix.PubSub.PG2] config :mime, :types, %{"text/event-stream" => ["sse"]} -config :nola, Nola.IRC.LastFmHandler, +config :nola, :lastfm, api_key: "x", api_secret: "x" -config :nola, Nola.IRC.YouTubeHandler, +config :nola, :youtube, api_key: "x", invidious: "yewtu.be" config :mnesia, dir: '.mnesia/#{Mix.env}/#{node()}' # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env}.exs" diff --git a/lib/irc/conns.ex b/lib/irc/conns.ex deleted file mode 100644 index b0e5d3c..0000000 --- a/lib/irc/conns.ex +++ /dev/null @@ -1,3 +0,0 @@ -defmodule IRC.Conns do - -end diff --git a/lib/web/templates/layout/app.html.eex b/lib/web/templates/layout/app.html.eex index c774369..b3199e2 100644 --- a/lib/web/templates/layout/app.html.eex +++ b/lib/web/templates/layout/app.html.eex @@ -1,126 +1,129 @@