1.1 KiB
1.1 KiB
Experimenting with Maker
Getting Up and Running
- Got
daenerys.zipfrom Emi - When you unzip it, it unpacks a k8 and src folder, but this could probably exist under a `daenerys/` folder so it doesn't expand unexpectedly
- I navigated to ExDocs - Up and Running
- Followed the link to the ExDocs - Installation
- I just run development Postgres instance on my machine, so I had to set PGHOST before running
mix setupbut it worked! - Ran
iex -S mix phx.serverand got prompted with the usual login screen!
Configuring Auth
- I already had a dev okta account
-
Created an Application in okta
- On the left side-bar click Applications -> Applications
- Click "Create App Integration"
- Select "OIDC - OpenID Connect" for Sign-in method
- Select "Web Application" for Application type
-
Set environment variables in .env
- OKTA_CLIENT_ID
- OKTA_CLIENT_SECRET
- OKTA_SITE
- Source the environment variables.
- It works :)