Packages

S3-compatible object storage monitor (AWS S3, MinIO, Ceph RGW, Cloudflare R2, etc.), with its dashboard panel bundled in the same package as a separate module (Integrations.S3.Display) — one install, both halves; a release without raven_web simply runs the monitor headless.

Current section

Files

Jump to

mix.exs

defmodule RavenIntegrationS3.MixProject do
use Mix.Project
def project do
[
app: :raven_integration_s3,
version: "0.3.0",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
def application, do: [extra_applications: [:logger, :public_key]]
defp deps do
[
{:raven_observer_sdk, "~> 0.5", only: :dev},
{:raven_observer_display_sdk, "~> 0.1", only: :dev},
{:req, "~> 0.6"}
]
end
defp package do
[
description: "S3-compatible object storage monitor (AWS S3, MinIO, Ceph RGW, Cloudflare R2, etc.), with its dashboard panel bundled in the same package as a separate module (Integrations.S3.Display) — one install, both halves; a release without raven_web simply runs the monitor headless.",
licenses: ["MIT"],
links: %{"Codeberg" => "https://codeberg.org/raven-observer/raven-integrations"}
]
end
end