1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
Commit Graph

957 Commits

Author SHA1 Message Date
Thomas Heartman
736faaca5b
docs: typo; change "metics" -> "metrics" 2021-11-29 08:40:59 +01:00
Thomas Heartman
1af8b23149 docs: remove references to environments being a beta feature.
Also specify that if you're on version 4.3, you don't need to do anything.
2021-11-26 13:53:46 +01:00
Thomas Heartman
1837a6ec35 docs: add environments post to side bar. 2021-11-26 13:53:32 +01:00
Thomas Heartman
7bfe306545
Merge branch 'master' into docs/detail-health-rating-updates 2021-11-26 11:07:48 +01:00
Thomas Heartman
1ac46ec3c1 docs: Clarify that health rating is only updated once an hour.
This commit also gives health rating its own, separate headline. This
should improve searchability 🤞
2021-11-25 10:45:47 +01:00
Thomas Heartman
c5129e00d7
Merge branch 'master' into docs/fix-internal-links 2021-11-25 09:10:57 +01:00
Thomas Heartman
e8478126a5
Merge branch 'master' into docs/add-stickiness 2021-11-24 13:59:56 +01:00
Thomas Heartman
42b1f44d84 docs: add note about Unleash using MurmurHash for stickiness. 2021-11-24 13:41:25 +01:00
Thomas Heartman
d58ed5f84b
Apply suggestions from code review
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
2021-11-24 13:39:02 +01:00
Christopher Kolstad
6c6001619c
Feat/variant api (#1119)
Add a new .../:feature/variants API

This adds
- `GET /api/admin/projects/:projectId/features/:featureName/variants` which returns 
```json
{ version: '1', variants: IVariant[] }
```
- `PATCH /api/admin/projects/:projectId/features/:featureName/variants` which accepts a json patch set and updates the feature's variants field and then returns 
```json
{ version: '1', variants: IVariant[] }
```
- `PUT /api/admin/projects/:projectId/features/:featureName/variants`
 which accepts a IVariant[] and overwrites the current variants list for the feature defined in :featureName and returns
```json
{ version: '1', variants: IVariant[] }

- This also makes sure the total weight of all variants is == 1000
- Validates that there is at least 1 'variable' variant if there are variants
- Validates that 'fix' variants total weight can't exceed 1000
- Adds tests for all these invariants.


Co-authored-by: Simon Hornby <simon@getunleash.ai>
2021-11-24 13:08:04 +01:00
Thomas Heartman
8b50696e99 docs: use internal links for linking to other doc pages. 2021-11-24 13:02:06 +01:00
Thomas Heartman
c077860d54 docs: Remove link to non-existing page about sdk capabilities. 2021-11-24 12:04:33 +01:00
Thomas Heartman
9c0848b053 docs: fix links to old versions of pages; link to new versions. 2021-11-24 12:03:31 +01:00
Thomas Heartman
6634d1d580 docs: fix a typo in activation strategies: use -> user 2021-11-24 11:52:27 +01:00
Thomas Heartman
d15cb50792 docs: update stickiness docs. 2021-11-24 11:52:17 +01:00
Thomas Heartman
7feff57977 docs: add image for custom stickiness. 2021-11-24 11:43:27 +01:00
Thomas Heartman
eadf118759 docs: delete old unleash-context doc.
Similar to the activation strategy page: this seems to be deprecated
and was not listed in the sidebar. There is also a newer, more fleshed
out version that _does_ appear in the sidebar instead.
2021-11-24 11:27:55 +01:00
Thomas Heartman
b9325c89fb docs: delete old activation strategies file.
This file has not been touched in a while and seems to be superseded
by the new file by the same name in the `user_guide` directory.
2021-11-24 10:59:47 +01:00
Thomas Heartman
7274474792 docs: remove link to old activation strategies document. 2021-11-24 10:53:56 +01:00
Thomas Heartman
e9e1de4a89 docs: Add stickiness document to advanced section. 2021-11-24 10:48:28 +01:00
Thomas Heartman
7fe74c1358 docs: update reference to gradual rollout (was 'flexible rollout') 2021-11-24 10:48:02 +01:00
Thomas Heartman
ff4114e7d2
Merge branch 'master' into docs/more-feature-toggle-type-info 2021-11-24 08:47:16 +01:00
Thomas Heartman
df742279a5
Apply suggestions from code review
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
2021-11-24 08:33:31 +01:00
Thomas Heartman
9075261d30 docs: add basic info to stickiness. 2021-11-23 14:59:23 +01:00
Thomas Heartman
7056d516b4 fix: image inclusion and alt text syntax was wrong.
Turns out the image description needed to be wrapped in an extra pair
of square brackets and that quotes must be escaped or removed.
2021-11-23 14:18:35 +01:00
Thomas Heartman
9268b333ef docs: add initial outline id for custom stickiness. 2021-11-23 14:08:35 +01:00
Thomas Heartman
c7c4ad9963 docs: touch up the section on deprecating feature toggles. 2021-11-23 13:36:36 +01:00
Thomas Heartman
6962f39cc1 docs: link to feature-flag-types from important concepts. 2021-11-23 11:53:34 +01:00
Thomas Heartman
5fc02a10d3 docs: fix internal links. 2021-11-23 11:53:23 +01:00
Thomas Heartman
aef10d1d83 docs: first pass at updating the feature toggle types entry. 2021-11-23 11:15:20 +01:00
Fredrik Oseberg
a12250aa0a docs: add always pull to getting started 2021-11-23 09:43:35 +01:00
Fredrik Oseberg
6f062e4d66 docs: add always pull to docker commands 2021-11-23 09:40:05 +01:00
Thomas Heartman
7fdb53f664 Docs: add a tip about docker names having to be unique. 2021-11-23 09:08:19 +01:00
Thomas Heartman
c1e225ea9b docs: fix up docker commands to have consistent formatting.
Moved each option onto its own line, the last two options are always
`--network` and then `--name`.
2021-11-23 08:08:23 +01:00
Thomas Heartman
98cdc1674f docs: add initial (untested) steps on how to run the proxy locally.
I haven't yet tested connecting to the `unleash:4242` address.
2021-11-22 16:16:38 +01:00
Christopher Kolstad
52ae753466
docs: remove jira cloud plugin docs for now (#1118) 2021-11-22 11:43:06 +01:00
jonkjenn
e4e8d12ca7
Docs: Update feature-toggles-api.md (#1105)
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
2021-11-15 22:36:25 +01:00
Simmon Hornby
000cb3bb69 docs: Improve readability of jira server installation plugin slightly 2021-11-12 16:56:25 +02:00
sighphyre
152dac0a37
Update website/docs/integrations/jira-server-plugin-usage.md
Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
2021-11-12 16:54:03 +02:00
sighphyre
afca898924
Update website/docs/integrations/jira-server-plugin-usage.md
Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
2021-11-12 16:53:48 +02:00
sighphyre
7a72a7a4ce
Update website/docs/integrations/jira-server-plugin-installation.md
Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
2021-11-12 16:53:29 +02:00
sighphyre
43cf86ed6f
Update website/docs/integrations/jira-server-plugin-installation.md
Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
2021-11-12 16:53:06 +02:00
Christopher Kolstad
061fc560ab
docs: added screenshot successful install 2021-11-12 15:40:10 +01:00
Christopher Kolstad
fd421a677d
Merge branch 'master' into docs/jiraServerPlugin 2021-11-12 15:37:52 +01:00
Christopher Kolstad
614d71b464
docs: mark Jira Cloud plugin as not recommended 2021-11-12 14:12:03 +01:00
Christopher Kolstad
00558a28d4
docs: Add docs for Jira server plugin 2021-11-12 14:00:41 +01:00
Ivar Conradi Østhus
d8478dd928
feat: clean up events (#1089)
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
2021-11-12 13:15:51 +01:00
Thomas Heartman
b37918c20e
Merge branch 'master' into doc/environments-polish 2021-11-12 09:56:36 +01:00
Christopher Kolstad
7409f679f2
docs: Updated maven coordinates for java sdk 2021-11-12 08:34:11 +01:00
Thomas Heartman
77890bf88a docs: add notes about users having to add strats to enable envs. 2021-11-12 08:33:55 +01:00
Thomas Heartman
854f2d5d65 docs: add paragraph to intro: things will still work (default env) 2021-11-12 08:26:19 +01:00
Thomas Heartman
b776984187 docs: simplify language + pre-configure -> preconfigure 2021-11-12 08:25:55 +01:00
Thomas Heartman
257497153c Use absolute URL for intra-doc link.
I don't know how this works in docusaurus 🤷
2021-11-11 15:41:54 +01:00
Thomas Heartman
8a41799731 docs: Polish text on environments.
There's a number of small text adjustments and typo fixes in here with
the goal of clarifying how environments and the migration process work.
2021-11-11 15:36:41 +01:00
Nikolay Shebanov
e1df5696cd
Wrap the client into an event listener in the quickstart doc (#1079) 2021-11-11 13:20:19 +01:00
Ivar Conradi Østhus
c4035353a0
docs: add syntax highlighting to react-sdk 2021-11-09 14:21:07 +01:00
Thomas Heartman
106c9cebde
docs: Clarify that the proxy does not expose disabled flags (#1094)
* docs: fix typo 'preformat' -> 'performant'

* docs: clarify that proxy returns _only_ enabled toggles

This is based on feedback we got that said:

> Right now biggest disappointment is that docs doesn't match an exact
> JS proxy libraries and their usage. For example, we couldn't make
> feature flag return enabled: false, instead it just hides/not return
> the flag at all.
2021-11-08 22:58:02 +01:00
renovate[bot]
35f89a5427
fix(deps): update docusaurus monorepo to v2.0.0-beta.9 (#1081)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-11-02 20:30:11 +01:00
Ivar Conradi Østhus
d0b2ce3170
fix: add enpoint for fetching a single user (#1074)
* fix: add enpoint for fetching a single user

* fix add api docs
2021-10-28 14:24:09 +02:00
Ivar Conradi Østhus
131eeeaa78
fix: demo-auth should use /auth path 2021-10-26 23:04:44 +02:00
Ivar Conradi Østhus
d5bc0c6f76
docs: minor typo 2021-10-26 11:32:19 +02:00
Ivar Conradi Østhus
a9bfe47c88 chore: add video to envrionments 2021-10-26 11:25:19 +02:00
Ivar Conradi Østhus
ffec4f6342 fix: rename websitev2 to website 2021-10-26 11:25:19 +02:00
Christopher Kolstad
406f0554cf
Docusaurusv2 (#864)
feat: Upgraded to Docusaurus v2

closes: #771
2021-06-04 11:17:15 +02:00
Ivar Conradi Østhus
906b9f63e6
docs: enterprise authentication 2021-05-27 22:10:28 +02:00
Ivar Conradi Østhus
ef37da7326
fix: more docs 2021-05-21 22:26:13 +02:00
Ivar Conradi Østhus
13b5bd5154
fix: broken link 2021-05-21 21:30:29 +02:00
Ivar Conradi Østhus
77dfd2104a
fix: update transitive dependencies for website 2021-05-21 19:19:51 +02:00
Ivar Conradi Østhus
af8fb949cc
fix: update website/yarn.lock 2021-05-21 16:51:55 +02:00
dependabot[bot]
8a9cb58fc4
chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 in /website (#843)
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases)
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-18 14:42:21 +02:00
Ivar Conradi Østhus
bcc2d913cc
fix: more docs 2021-05-18 13:22:28 +02:00
Ivar Conradi Østhus
c4b42db0ed
fix: lint 2021-05-18 12:00:53 +02:00
Ivar Conradi Østhus
2c5e13aacb
fix: docs colors 2021-05-18 11:37:35 +02:00
Christopher Kolstad
c224786f29
feat: update docs to match v4.
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
2021-05-18 11:19:33 +02:00
Ivar Conradi Østhus
141b359330
chore: moved technical debt docs to user-guides 2021-05-04 20:11:17 +02:00
Ivar Conradi Østhus
2f2c2b74db
fix: minor docs cleanup 2021-05-04 15:33:31 +02:00
Christopher Kolstad
4b65c44116
feat: add ui-bootstrap endpoint (#790)
* feat: add ui-bootstrap endpoint

- Reducing calls needed for frontend to 1 instead of the current 6

fixes: #789
2021-04-20 19:54:31 +02:00
Ivar Conradi Østhus
b7d2cb06ae
fix: docs transitive dependencies 2021-04-13 09:24:17 +02:00
Martin Folkeseth
5d41e63077
Chore: new amedia logo (#776) 2021-04-06 19:16:43 +02:00
Fredrik Strand Oseberg
8848956846
docs: add technical debt documentation (#751)
* docs: add technical debt documentation

* fix: unknown toggles id

* fix: add doc
2021-03-16 13:07:45 +01:00
Ivar Conradi Østhus
1152272ed6
chore: add docs for context api (#762) 2021-03-12 19:08:18 +01:00
Ivar Conradi Østhus
ab325b5c6d
fix: upgrade docusaurus 2021-03-12 12:41:52 +01:00
Martin Folkeseth
9e2d4af1dc
Add Amedia company (#760) 2021-03-11 10:35:39 +01:00
Ivar Conradi Østhus
36bc3b9823
chore: more docs 2021-02-28 22:20:15 +01:00
Ivar Conradi Østhus
7a99017f9a
fix: add strategy constraints 2021-02-28 21:50:13 +01:00
Ivar Conradi Østhus
620d0f53d0
chore: more docs 2021-02-26 07:49:31 +01:00
Ivar Conradi Østhus
24d2aa5dea
chore: more docs 2021-02-25 22:27:11 +01:00
Ivar Conradi Østhus
26255b8d62
chore: docs 2021-02-25 21:00:19 +01:00
Ivar Conradi Østhus
c4c33c1f4a
chore: add docs for health 2021-02-25 16:55:18 +01:00
Ivar Conradi Østhus
3dc3c07289
chore: update sidebar 2021-02-25 16:47:22 +01:00
Ivar Conradi Østhus
3dcc65ef52
chore: fix getting started link on docs index 2021-02-25 16:46:29 +01:00
Ivar Conradi Østhus
c7c618dbc5
chore: update gaTrackingId for user docs 2021-02-25 16:19:19 +01:00
Ivar Conradi Østhus
ecc178729d
chore: use img instead of svg for logo 2021-02-25 16:15:20 +01:00
egilconr
1d9065aff1
chore: Improve our user documentation (#733)
Co-authored-by: Christopher Kolstad <chriswk@fastmail.com>
Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
Co-authored-by: Eco C <egilconr@gmail.com>
2021-02-25 16:01:36 +01:00
Ivar Conradi Østhus
6c41816719
chore: cname for docs 2021-02-25 12:45:27 +01:00
Ivar Conradi Østhus
23ceacff41
use svg logo 2021-02-25 12:42:18 +01:00
Ivar Conradi Østhus
2a40edd7e6
fix: move CNAME to static 2021-02-17 20:23:50 +01:00
Ivar Conradi Østhus
59f9490bd7
fix: make sure static site includes CNAME 2021-02-17 20:06:02 +01:00
Ivar Conradi Østhus
1486cdab52 fix: add docs for addons 2021-02-05 15:20:00 +01:00
Ivar Conradi Østhus
17c8fe7710 feat: Introduce addon framework
fixes: #587

Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
2021-02-05 15:20:00 +01:00
Ivar Conradi Østhus
da049865ee chore: add suvery link to docs 2021-01-26 09:46:56 +01:00
Ivar Conradi Østhus
5965aad3df fix: website: reqquire immer 8.0.1 or higher 2021-01-25 07:53:53 +01:00
pmb
14ee8fcdcf chore(docs): Add NestJS client library reference 2020-12-24 15:22:05 +01:00
Ivar Conradi Østhus
f2e4b69562 chore(docs): Add link to Open API specifications 2020-12-15 13:42:22 +01:00
Ivar Conradi Østhus
d1f4039b09
chore(docs): Clean up configuring unleash (#672) 2020-12-15 13:18:38 +01:00
dependabot[bot]
b4b3f06d8d
chore(deps): bump ini from 1.3.5 to 1.3.7 in /website (#671)
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7.
- [Release notes](https://github.com/isaacs/ini/releases)
- [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.7)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-12-11 21:18:53 +01:00
dependabot[bot]
c9d3fe6d3d chore(deps): bump highlight.js from 9.17.1 to 9.18.5 in /website
Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 9.17.1 to 9.18.5.
- [Release notes](https://github.com/highlightjs/highlight.js/releases)
- [Changelog](https://github.com/highlightjs/highlight.js/blob/9.18.5/CHANGES.md)
- [Commits](https://github.com/highlightjs/highlight.js/compare/9.17.1...9.18.5)

Signed-off-by: dependabot[bot] <support@github.com>
2020-11-25 07:26:35 +01:00
Ivar Conradi Østhus
9e48b5a2f4 fix: Replace travis with GitHub Actions
closes #656
2020-11-24 12:46:55 +01:00
avirogalsky
47e16a1db4
chore(docs): Add clojure client to doc (#649) 2020-11-11 09:58:30 +01:00
Ivar Conradi Østhus
2ec816946f chore(docs): update sidebar 2020-11-03 15:05:31 +01:00
dependabot[bot]
7d46dcbb21
chore(deps): bump dot-prop from 4.2.0 to 4.2.1 in /website (#644)
Bumps [dot-prop](https://github.com/sindresorhus/dot-prop) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/sindresorhus/dot-prop/releases)
- [Commits](https://github.com/sindresorhus/dot-prop/compare/v4.2.0...v4.2.1)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-30 09:57:59 +01:00
Ivar Conradi Østhus
d7fe3af59f fix: join link to slack in help section 2020-10-30 09:02:22 +01:00
dependabot[bot]
ffa2af4e73
chore(deps): bump decompress from 4.2.0 to 4.2.1 in /website (#628)
Bumps [decompress](https://github.com/kevva/decompress) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/kevva/decompress/releases)
- [Commits](https://github.com/kevva/decompress/compare/v4.2.0...v4.2.1)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-18 09:07:41 +02:00
Mads Opheim
fd9a82fb9e
fix: The links for Kotlin and PHP clients got mixed up (#623) 2020-08-17 11:31:28 +02:00
dependabot[bot]
feee16ea55
chore(deps): bump prismjs from 1.17.1 to 1.21.0 in /website (#620)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-08-12 10:33:44 +02:00
Ivar Conradi Østhus
ee6beae832 fix: add more client SDK to documentation 2020-08-10 10:14:51 +02:00
Ivar Conradi Østhus
99b27061aa fix: update feature toggle variants documentation 2020-08-10 10:10:41 +02:00
Ivar Conradi Østhus
7535c88cbf fix: add user documentation for feature toggle types 2020-08-07 11:13:30 +02:00
dependabot[bot]
c9c6687a50
chore(deps): bump lodash from 4.17.15 to 4.17.19 in /website (#611)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-07-31 22:16:47 +02:00
Ivar Conradi Østhus
b3c0562f96 fix: add resolution for minimist and kind-of 2020-06-24 11:26:37 +02:00
dependabot[bot]
5b2954cf20
chore(deps): bump websocket-extensions from 0.1.3 to 0.1.4 in /website (#604)
Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4.
- [Release notes](https://github.com/faye/websocket-extensions-node/releases)
- [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md)
- [Commits](https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-06-17 08:03:47 +02:00
Kris-Mikael Krister
978a6a87b9
chore: Add Otovo to users array (#603) 2020-06-03 09:46:36 +02:00
Mattias Lundell
0f73f09675
Fix: typo webpage (#579)
entperise -> enterprise
2020-03-31 19:19:35 +02:00
Ivar Conradi Østhus
1ee9797ea9 chore: upgrade documentation 2020-02-26 21:55:56 +01:00
Ammar Alakkad
e5cf5ff13b fix: typo in for the Laravel name (#549) 2020-02-20 08:34:33 +01:00
Ivar Conradi Østhus
1d8da72efc fix: documentation footer 2020-02-20 08:34:32 +01:00
ivaosthu
7477a7f1b5 chore: Add details about Larvel (php) SDK 2020-02-20 08:34:29 +01:00
Weslei Juan Novaes Pereira
b717ad7e2f chore: Added reference to official client implementation in .Net (#503)
* Added reference to official client implementation in .Net

* Added info of official implementations in docs
2020-02-20 08:34:29 +01:00
Weslei Juan Novaes Pereira
d9709e61bd chore: Updated slack invite token (#501)
Slack invite token was invalid, updated to a valid one
2020-02-20 08:34:28 +01:00
ivaosthu
81259cdf94 chore: fix broken links 2020-02-20 08:34:27 +01:00
ivaosthu
9f83826633 Add missing image 2020-02-20 08:34:27 +01:00
ivaosthu
e93948cf6f chore: Add webhook guide do website 2020-02-20 08:34:26 +01:00
Derek Wene
55d2208422 chore: add budgets as a company using unleash (#456) 2020-02-20 08:34:26 +01:00
Ivar Conradi Østhus
5faaf0d1cc fix: Update docusaurus to version 1.11.0 2020-02-20 08:34:25 +01:00
ivaosthu
eaae969e84 chore: Update readme with details about slack
releates to #444
2020-02-20 08:34:25 +01:00
Ivar Conradi Østhus
cb47fee248 Update siteConfig.js 2020-02-20 08:34:23 +01:00
ivaosthu
be37ede37c chore: Added new user of unleash-doc 2020-02-20 08:34:22 +01:00
Benjamin Ludewig
4ecf68d015 chore: update import/export documentation 2020-02-20 08:34:22 +01:00
ivaosthu
1a8f919586 chore: Update sdk doc 2020-02-20 08:34:21 +01:00
Valentin Jonovs
7c67e6bcc3 Fix typos in documentation 2020-02-20 08:34:21 +01:00
ivaosthu
868f43a3b2 fix: Also deploy README.md as part of docs 2020-02-20 08:34:21 +01:00
ivaosthu
f58dd85616 fix: Update dependencies 2020-02-20 08:34:21 +01:00
ivaosthu
a01c4c8285 fix: Toggle variants documentation 2020-02-20 08:34:20 +01:00
ivaosthu
ac2368a978 Revert "chore(doc): Add site verification"
This reverts commit ce62feab13.
2020-02-20 08:34:16 +01:00
ivaosthu
48c9bb8b1a chore(doc): Add site verification 2020-02-20 08:34:16 +01:00
Cody Olsen
8f6a9318ba fix typo: connet => connect 2020-02-20 08:34:16 +01:00
ivaosthu
f3cae5d806 chore: fix typos in custom strategy guide 2020-02-20 08:34:16 +01:00
Ivar Conradi Østhus
1600af39dc chore: Add documentation for custom strategies
closes  #338
2020-02-20 08:34:16 +01:00
Ivar Conradi Østhus
751de5eb05 chore: add gtagId to siteConfig 2020-02-20 08:34:16 +01:00
ivaosthu
cc58b57c33 chore: add precommit formatting 2020-02-20 08:34:15 +01:00
ivaosthu
8a53d8dca2 chore: Fix formatting all the things 2020-02-20 08:34:15 +01:00
Ivar Conradi Østhus
d490e2742c chore: Cleaned up client SDK documentation 2020-02-20 08:34:15 +01:00
Victor Sandoval
79c5223091 chore(docs): Add google auth hook guide 2020-02-20 08:34:15 +01:00
Simen Bekkhus
e96ff11f98 chore: fix lint 2020-02-20 08:34:15 +01:00
Audun Fauchald Strand
d10100f7c6 add nav.no tu users (#359) 2020-02-20 08:34:15 +01:00
ivaosthu
0c2d58b984 chore(documentation): Added Docusaurus with a website
fixes #355
2020-02-20 08:34:14 +01:00
Simen Bekkhus
d989c2adeb Upgrade dev deps 2020-02-20 08:31:57 +01:00