https://github.com/punchcafe/oauth-server
A simple implementation of an OAuth server.
https://github.com/punchcafe/oauth-server
Last synced: 3 months ago
JSON representation
A simple implementation of an OAuth server.
- Host: GitHub
- URL: https://github.com/punchcafe/oauth-server
- Owner: punchcafe
- Created: 2022-05-31T09:45:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T19:27:22.000Z (over 3 years ago)
- Last Synced: 2025-10-24T04:55:51.833Z (3 months ago)
- Language: Elixir
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OauthImplementation
## Implementation Plan
```
entities:
access_token:
token(id) | user_id | client_id | scopes
refresh_token:
token(id) | user_id | client_id | scopes
client
id | secret | avatar | display_name | dev_id
dev_account
username | password | id |// potentially user_id
individual_permissions (for front end)
scope_permissions_mapping
Pages:
Login (nice CRT vibe)
Manage Clients (user)
```
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `oauth_implementation` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:oauth_implementation, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/oauth_implementation](https://hexdocs.pm/oauth_implementation).