1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/website
Thomas Heartman 75c3fcd170
docs: update export/import examples (#2348)
## What

This change updates the availability notice and the code samples in the
import/export docs.

Specifically, the code samples have been moved to using the ApiRequest
component (and thus get examples in HTTP, cURL, and HTTPie), and the
import code sample now says which version it's using (version 3).

## Why

The import code sample didn't say which version of the data it used, so
Unleash would assume it was version 1 if you tried to run it. However,
the actual data was incompatible with the v1 data format, so you'd get
an error if you tried to actually import it.

While fixing this, I figured it'd also be alright to add some other
minor updates to bring the docs a bit more up to recent standards.
2022-11-08 13:42:06 +00:00
..
.storybook
docs docs: update export/import examples (#2348) 2022-11-08 13:42:06 +00:00
src
static docs: add documentation for user group syncing (#2314) 2022-11-03 14:59:12 +02:00
.gitignore
babel.config.js
clean-generated-docs.js
docusaurus.config.js docs: Remove/update references to Heroku (#2099) 2022-10-19 12:02:00 +00:00
package.json fix: require minimatch 3.0.5 or higher 2022-11-03 14:43:36 +01:00
README.md fix: rename websitev2 to website 2021-10-26 11:25:19 +02:00
sidebars.js docs: add documentation for user group syncing (#2314) 2022-11-03 14:59:12 +02:00
tsconfig.json
yarn.lock fix: require minimatch 3.0.5 or higher 2022-11-03 14:43:36 +01:00

Website

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

Installation

yarn install

Local Development

yarn start

This command starts 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.

Deployment

GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.