Packages
token_refresh
0.1.0
A package to get going with refresh_able tokens really quickly, ease of use is prioritized.
Current section
Files
Jump to
Current section
Files
token_refresh
mix.exs
mix.exs
defmodule PX.MixProject do
use Mix.Project
def project do
[
app: :token_refresh,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
name: "TokenRefresh",
source_url: "https://github.com/Sleepful/refresh_token",
homepage_url: "https://github.com/Sleepful/refresh_token",
docs: [
# main: "MyApp", # The main page in the docs
# logo: "path/to/logo.png",
# extras: ["README.md"]
],
package: package(),
description: description(),
licenses: "MIT",
links: %{"GitHub" => "https://github.com/Sleepful/refresh_token"}
]
end
defp package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/Sleepful/refresh_token"}
]
end
defp description() do
"A package to get going with refresh_able tokens really quickly, ease of use is prioritized."
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:req, "~> 0.3.4"},
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end