-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
033a476
commit e76cd01
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# WorkOS + Elixir | ||
|
||
```elixir | ||
Mix.install([ | ||
{:workos, "~> 1.0.0"}, | ||
{:kino, "~> 0.9.4"} | ||
]) | ||
``` | ||
|
||
## Create a client | ||
|
||
To start using WorkOS, create a `client` with the API key and client ID that you copy via the WorkOS Dashboard: | ||
|
||
```elixir | ||
client = WorkOS.client(api_key: System.fetch_env!("WORKOS_API_KEY"), client_id: System.fetch_env!("WORKOS_CLIENT_ID")) | ||
``` | ||
|
||
Note that if you choose to configure WorkOS in your app config, passing a client struct is always optional. |