add exdoc configs

This commit is contained in:
shibao 2022-02-15 18:57:06 -05:00 committed by oliviasculley
parent fc5b03d680
commit 33d82a902d
1 changed files with 12 additions and 1 deletions

13
mix.exs
View File

@ -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