https://github.com/harmon25/phoenix_jwt
JWT Plugin for Phoenix Framework (work in progress)
https://github.com/harmon25/phoenix_jwt
Last synced: 25 days ago
JSON representation
JWT Plugin for Phoenix Framework (work in progress)
- Host: GitHub
- URL: https://github.com/harmon25/phoenix_jwt
- Owner: harmon25
- Created: 2016-01-20T05:23:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T05:23:12.000Z (over 10 years ago)
- Last Synced: 2024-04-17T03:08:49.937Z (about 2 years ago)
- Language: Elixir
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PhoenixJwt
Elixir package for Phoenix applications to easiliy facilitate the use of JWTs for authentication
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add phoenix_jwt to your list of dependencies in `mix.exs`:
def deps do
[{:phoenix_jwt, "~> 0.0.1"}]
end
2. Ensure phoenix_jwt is started before your application:
def application do
[applications: [:phoenix_jwt]]
end