Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zemuldo committed Oct 23, 2023
1 parent 5e86d14 commit 1d88d49
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
Empty file added GUIDES.md
Empty file.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

App config secret manager for different providers.



## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
Expand All @@ -21,3 +19,19 @@ Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_do
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/ex_secrets>.

## Basic Usage

## Supported Providers


## Provider Config


## HTTP Client Config


## JSON Parser Config


## Configuration

5 changes: 5 additions & 0 deletions lib/application.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
defmodule ExSecrets.Application do

@moduledoc """
Application for adding providers and cache to the supervision tree.
All are besically GenServers that do a bunch of API calls and file access like .env reader
"""
use Application

alias ExSecrets.Providers.SystemEnv
Expand Down
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ defmodule ExSecrets.MixProject do
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
deps: deps(),
docs: [
main: "readme", # The main page in the docs
logo: "logo.png",
extras: ["README.md", "GUIDES.md", "CHANGELOG.md", "LICENSE"]
]
]
end

Expand Down Expand Up @@ -44,6 +49,8 @@ defmodule ExSecrets.MixProject do
defp package() do
[
name: "ex_secrets",
source_url: "https://github.com/zemuldo/ex_secrets",
homepage_url: "https://hexdocs.pm/ex_secrets/readme.html",
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/zemuldo/ex_secrets"}
Expand Down

0 comments on commit 1d88d49

Please sign in to comment.