1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-18 00:19:49 +01:00
unleash.unleash/website
Nnenna Ndukwe bedd5e1c5b
docs: Feature Flag Security and Compliance for Enterprises (#9528)
<!-- Thanks for creating a PR! To make it easier for reviewers and
everyone else to understand what your changes relate to, please add some
relevant content to the headings below. Feel free to ignore or delete
sections that you don't think are relevant. Thank you! ❤️ -->

## About the changes
<!-- Describe the changes introduced. What are they and why are they
being introduced? Feel free to also add screenshots or steps to view the
changes if they're visual. -->

[Preview
Link](https://unleash-docs-git-use-case-security-v2-unleash-team.vercel.app/feature-flag-tutorials/use-cases/security-and-compliance)

Created a use case on Feature Flag Security & Compliance for
Enterprises.
![Screenshot 2025-03-12 at 1 46
20 PM](https://github.com/user-attachments/assets/df4a03c5-b9bc-4456-becd-35587990a13f)


WIP in this PR:
- [x] Transferring diagrams from [Google
Doc](https://docs.google.com/document/d/1uA5Xb2NOdJjqwleicS_u088YXLCm81Y6norJzEYlwuE/edit?tab=t.0)
to this document
- [x] Add in remaining images/screenshots used as seen in Google Docs

<!-- Does it close an issue? Multiple? -->
Closes #

<!-- (For internal contributors): Does it relate to an issue on public
roadmap? -->
<!--
Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item:
#
-->

### Important files
<!-- PRs can contain a lot of changes, but not all changes are equally
important. Where should a reviewer start looking to get an overview of
the changes? Are any files particularly important? -->


## Discussion points
<!-- Anything about the PR you'd like to discuss before it gets merged?
Got any questions or doubts? -->

So far, we will consider Unleash Edge for data privacy topic for a quick
2nd iteration or altogether separate piece.

---------

Co-authored-by: Melinda Fekete <melinda.fekete@getunleash.io>
Co-authored-by: Gastón Fournier <gaston@getunleash.io>
2025-03-14 09:31:19 -04:00
..
.yarn/releases chore(deps): update yarn to v4.7.0 (#9475) 2025-03-10 14:41:07 +00:00
docs docs: Feature Flag Security and Compliance for Enterprises (#9528) 2025-03-14 09:31:19 -04:00
remote-content Remove admonitions from Proxy docs (#8860) 2024-11-28 14:08:09 +01:00
src Update docs for data and privacy (#9397) 2025-02-28 16:28:32 +01:00
static docs: Feature Flag Security and Compliance for Enterprises (#9528) 2025-03-14 09:31:19 -04:00
.gitignore Docusaurus v3 (#8485) 2024-10-30 11:55:51 +00:00
.nvmrc Update docs for data and privacy (#9397) 2025-02-28 16:28:32 +01:00
.yarnrc.yml chore(deps): update yarn to v4.7.0 (#9475) 2025-03-10 14:41:07 +00:00
docusaurus.config.ts Upgrade docusaurus (#9284) 2025-02-11 17:37:14 +01:00
global.js Apply biome formatting to the docs website (#6523) 2024-03-13 11:30:40 +00:00
package.json chore(deps): update yarn to v4.7.0 (#9475) 2025-03-10 14:41:07 +00:00
prepare-generated-docs.mjs feat: add stale flag count to project status payload (#8751) 2024-11-14 14:10:10 +00:00
README.md Fixed OpenAPI URL renaming (#8726) 2024-11-14 11:07:23 +00:00
sidebars.ts docs: Feature Flag Security and Compliance for Enterprises (#9528) 2025-03-14 09:31:19 -04:00
tsconfig.json
vercel.json Update API tokens and client keys pages (#9143) 2025-02-04 09:32:32 +01:00
yarn.lock chore(deps): bump @babel/runtime from 7.26.0 to 7.26.10 in /website (#9520) 2025-03-13 13:16:19 +01:00

Website

This website is built using Docusaurus 2, a modern static website generator.

Installation

In a terminal, cd into the website folder of the locally cloned unleash repository and then start the installation.

cd unleash/website
yarn install

Generate OpenAPI docs

yarn generate

Generate the Open API docs that live at Reference documentation > APIs > OpenAPI

Local Development

Before running the docs the first time, you'll need to generate external documentation, as described in the generate OpenAPI docs section.

yarn start

Start a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Cleaning dependencies and caches

If you're upgrading many dependencies, it's always good to delete the node_modules directory, refresh yarn.lock and clean the various caches.

rm -rf node_modules
rm -rf .docusaurus
rm -rf docs/reference/api/unleash
rm -rf yarn.lock
touch yarn.lock

Troubleshooting

TypeError: source_default(...).bold is not a function

If you get an error like this, it's probably due to a formatting issue within one of the markdown files. It could be

  • unescaped angle brackets (markdown will try to parse <your-key> (when it's not quoted) as HTML, which breaks the build)
  • incorrectly formatted titles or missing pieces of files
  • a lot of other stuff.
Component Figure was not imported, exported, or provided by MDXProvider as global scope

TypeError: source_default(...).bold is not a function
[ERROR] Unable to build website for locale en.

This error is very hard to debug, but there is a trick that appears to work (as shared in this discussion on docusaurus' repo):

In node_modules/@docusaurus/core/lib/client/serverEntry.js, remove all references to chalk. You can use a regex replace for that, by replacing chalk(\w|\.)+ with the empty string.

Depending on your editor, that regex might need more escapes. For instance, here's a command to run with evil-ex in Emacs:

%s/chalk\(\w\|\.\)+//g

For macOS sed, it'd be:

sed -i '' 's/chalk\(\w\|\.\)\+//g' node_modules/@docusaurus/core/lib/client/serverEntry.js

For GNU sed:

sed -i 's/chalk\(\w\|\.\)\+//g' node_modules/@docusaurus/core/lib/client/serverEntry.js

That might turn your error into something like this:

[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/change-requests.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/feature-types.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/frontend-api.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/maintenance.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/notifications.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/personal-access-tokens.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/segments.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/service-accounts.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/telemetry.
[ERROR] Docusaurus server-side rendering could not render static page with path /reference/api/unleash/unstable.
Component Figure was not imported, exported, or provided by MDXProvider as global scope

Error: Unexpected: cant find current sidebar in context
[ERROR] Unable to build website for locale en.