fixes #32 - add docs to explain how to configure when using OIDC

This commit is contained in:
Robert Dyer
2025-09-08 09:53:24 -05:00
parent 9d82f204f9
commit 84ea8d2e76
+17
View File
@@ -72,6 +72,23 @@ RENTCAST_API_KEY="<Rentcast API key>"
RENTCAST_PAYEE_NAME="RentCast"
```
### OIDC Auth Provider Support
When using OIDC, in your Actual Budget server config you must be able to log in
with a password.
Set the following in your **server config** (not in your helpers config!), then
on initial login you must set a password:
```
ACTUAL_OPENID_AUTH_METHOD=openid
ACTUAL_LOGIN_METHOD=openid
ACTUAL_ALLOWED_LOGIN_METHODS=openid,password,header
ACTUAL_OPENID_ENFORCE=false
```
Then configure the helpers for password login, as shown above.
## Installation
Run `npm install` to install any required dependencies.