Update README

This commit is contained in:
xbgmsharp
2024-05-04 22:12:53 +02:00
parent 670aa2e43a
commit 4dcd8d2ea5

View File

@@ -82,17 +82,25 @@ UPDATE cron.job SET active = True;
``` ```
Be sure to review your postgsail settings via SQL in the table `app_settings`: Be sure to review your postgsail settings via SQL in the table `app_settings`:
```sql ```sql
SELECT * FROM app_settings; SELECT * FROM public.app_settings;
``` ```
### How to bypass OTP for a local install? ### How to bypass OTP for a local install?
You can skip the otp, add or update json key value to the account preference. You can skip the otp, add or update json key value to the account preference.
```json
"email_valid": true "email_valid": true
```
OTP is created and sent by email using a cron in postgres/cron/job OTP is created and sent by email using a cron in postgres/cron/job.
```sql
SELECT * FROM auth.otp;
```
accounts are store in table signalk/auth/accounts accounts are store in table signalk/auth/accounts
```sql
SELECT * FROM auth.accounts;
```
You should have an history in table signalk/public/process_queue You should have an history in table signalk/public/process_queue
```sql ```sql