Skip to content

Commit

Permalink
Update envars.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 authored Mar 29, 2023
1 parent 830368b commit 49a690b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/self-hosting/configuration/envars.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ Other environment variables are listed below to increase the functionality of yo
<Tabs>
<Tab title="Required">
<ParamField query="ENCRYPTION_KEY" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="JWT_SIGNUP_SECRET" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="JWT_REFRESH_SECRET" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="JWT_AUTH_SECRET" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="JWT_MFA_SECRET" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="JWT_SERVICE_SECRET" type="string" default="none" required>
Must be a random 32 character length hex string
Must be a random 16 byte hex string. Can be generated with `openssl rand -hex 16`
</ParamField>

<ParamField query="MONGO_URL" type="string" default="none" required>
Expand Down

1 comment on commit 49a690b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for backend

St.
Category Percentage Covered / Total
🟢 Statements 90.53% 86/95
🔴 Branches 25% 2/8
🔴 Functions 50% 3/6
🟢 Lines 92.39% 85/92

Test suite run success

24 tests passing in 2 suites.

Report generated by 🧪jest coverage report action from 49a690b

Please sign in to comment.