Skip to content

Commit

Permalink
config things
Browse files Browse the repository at this point in the history
  • Loading branch information
jaronoff97 committed Apr 18, 2024
1 parent 9e616eb commit 9d27165
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ config :tails,

# Configures the endpoint
config :tails, TailsWeb.Endpoint,
server: true,
url: [host: "localhost"],
adapter: Bandit.PhoenixAdapter,
render_errors: [
Expand Down
14 changes: 13 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@ defmodule Tails.MixProject do
# Put the project-level PLT in the priv/ directory (instead of the default _build/ location)
plt_file: {:no_warn, "priv/plts/project.plt"},
plt_add_apps: [:ex_unit]
]
],
package: package()
]
end

defp package do
[
description:
"A small application that allows you to tail the live telemetry of an otel collector",
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Jacob Aronoff"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/jaronoff97/tails"}
]
end

Expand Down

0 comments on commit 9d27165

Please sign in to comment.