From 4dcd8d2ea5df262e7f109ec4d264b5492cab1202 Mon Sep 17 00:00:00 2001 From: xbgmsharp Date: Sat, 4 May 2024 22:12:53 +0200 Subject: [PATCH] Update README --- docs/ERD/README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/ERD/README.md b/docs/ERD/README.md index 87ef55b..928b98b 100644 --- a/docs/ERD/README.md +++ b/docs/ERD/README.md @@ -82,17 +82,25 @@ UPDATE cron.job SET active = True; ``` Be sure to review your postgsail settings via SQL in the table `app_settings`: ```sql -SELECT * FROM app_settings; +SELECT * FROM public.app_settings; ``` ### How to bypass OTP for a local install? You can skip the otp, add or update json key value to the account preference. +```json "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 +```sql +SELECT * FROM auth.accounts; +``` You should have an history in table signalk/public/process_queue ```sql