From 6e7b93eb485cc8ec219a66d33d63cfb6f0f68c0b Mon Sep 17 00:00:00 2001 From: Saish Narvekar Date: Tue, 30 May 2023 21:08:52 +0530 Subject: [PATCH] docs: removed extra ` from documentation (#24231) --- CONTRIBUTING.md | 2 +- docs/docs/installation/configuring-superset.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48465f275..c8c699a92 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -591,7 +591,7 @@ Error: You must provide the URL of lib/mappings.wasm by calling SourceMapConsume ``` Then put this: ```bash -export NODE_OPTIONS=--no-experimental-fetch` +export NODE_OPTIONS=--no-experimental-fetch ``` #### Webpack dev server diff --git a/docs/docs/installation/configuring-superset.mdx b/docs/docs/installation/configuring-superset.mdx index 08c6796d3..66022521b 100644 --- a/docs/docs/installation/configuring-superset.mdx +++ b/docs/docs/installation/configuring-superset.mdx @@ -75,7 +75,7 @@ WTF_CSRF_EXEMPT_LIST = [‘’] Superset requires a user-specified SECRET_KEY to start up. This requirement was [added in version 2.1.0 to force secure configurations](https://preset.io/blog/superset-security-update-default-secret_key-vulnerability/). Add a strong SECRET_KEY to your `superset_config.py` file like: ```python -SECRET_KEY = 'YOUR_OWN_RANDOM_GENERATED_SECRET_KEY'` +SECRET_KEY = 'YOUR_OWN_RANDOM_GENERATED_SECRET_KEY' ``` You can generate a strong secure key with `openssl rand -base64 42`.