From 33d82a902d5492f74dd61493c6a7bfa4bce5f4c3 Mon Sep 17 00:00:00 2001 From: shibao Date: Tue, 15 Feb 2022 18:57:06 -0500 Subject: [PATCH] add exdoc configs --- mix.exs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 7412325..9450f00 100644 --- a/mix.exs +++ b/mix.exs @@ -11,7 +11,18 @@ defmodule Lokal.MixProject do start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), - dialyzer: [plt_add_apps: [:ex_unit]] + dialyzer: [plt_add_apps: [:ex_unit]], + # ExDoc + name: "Lokal", + source_url: "https://gitea.bubbletea.dev/shibao/lokal", + homepage_url: "https://gitea.bubbletea.dev/shibao/lokal", + docs: [ + # The main page in the docs + main: "README.md", + # logo: "path/to/logo.png", + extras: ["README.md"] + ], + authors: ["shibao"] ] end