Skip to content

Commit

Permalink
Update/docusaurus3 (#302)
Browse files Browse the repository at this point in the history
* WIP

* fixed md files

* fixed react inside mdx

* fixed Prism

* fixed markdown and converted some camelCase to camel_case
  • Loading branch information
deepakprabhakara authored Nov 3, 2023
1 parent e706fa6 commit 3fa8124
Show file tree
Hide file tree
Showing 18 changed files with 14,538 additions and 11,145 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm install --legacy-peer-deps
- run: npm run build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern sta
## Installation

```console
npm install
npm install --legacy-peer-deps
```

## Local Development
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-11-07-the-ikea-effect-in-software-engineering.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ We have seen software eat the world. This has led to more surface area for secur

BoxyHQ will build IKEA desks for all our customers so they don’t have to. Just sit at your pre-assembled desk and continue working on cool things that you set out to build in the first place.

PS: Announcing SAML Jackson (who doesn’t like a bit of Pulp Fiction), a SAML SSO service that works seamlessly as an OAuth 2.0 flow and abstracts away the tedious XML bits of the SAML protocol. Check out <https://github.com/boxyhq/jackson> and the demo at <https://github.com/boxyhq/jackson-examples/tree/main/apps/next-auth>. If SAML SSO is not relevant to you at this moment don’t forget to bookmark us and check back again. We are building a **"DevSecMesh"** over time so you can expect a lot of exciting features in the coming months.
PS: Announcing SAML Jackson (who doesn’t like a bit of Pulp Fiction), a SAML SSO service that works seamlessly as an OAuth 2.0 flow and abstracts away the tedious XML bits of the SAML protocol. Check out [our repository](https://github.com/boxyhq/jackson) and the [demo](https://github.com/boxyhq/jackson-examples/tree/main/apps/next-auth). If SAML SSO is not relevant to you at this moment don’t forget to bookmark us and check back again. We are building a **"DevSecMesh"** over time so you can expect a lot of exciting features in the coming months.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ They look for quite a few standards to be met in a solution provider 👇🏻

![enterprise-ready1](/img/blog/scoutflo-blog-enterprise-ready1.webp)

<div style={{ fontSize: "10px", marginTop: "-20px", paddingBottom: "20px" }}>Source <a href="https://www.enterpriseready.io/">EnterpriseReady.io</a>
<div style={{ fontSize: "10px", marginTop: "-20px", paddingBottom: "20px" }}>
Source <a href="https://www.enterpriseready.io/">EnterpriseReady.io</a>
</div>

![enterprise-ready2](/img/blog/scoutflo-blog-enterprise-ready2.webp)
Expand Down
2 changes: 1 addition & 1 deletion docs/jackson/sso-flow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Jackson also supports the [OIDC flow](https://openid.net/specs/openid-connect-co

Jackson has been designed to abstract the underlying SAML/OIDC login flow as a pure OAuth 2.0 flow. This means it's compatible with any standard OAuth 2.0 library out there, both client-side and server-side. It is important to remember that SSO Connection is configured per customer unlike OAuth 2.0 where you can have a single OAuth app supporting logins for all customers.

Jackson also supports the PKCE authorization flow (<https://oauth.net/2/pkce/>), so you can protect your SPAs.
Jackson also supports the [PKCE authorization flow](https://oauth.net/2/pkce/), so you can protect your SPAs.

If for any reason you need to implement the flow on your own, the steps are outlined below:

Expand Down
12 changes: 6 additions & 6 deletions docs/retraced/apis/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

The recommended way to search events using an API is to POST your query and variables to the appropriate Retraced GraphQL endpoint.

| API | Endpoint |
| ---------- | ------------------------------------------------------------------------------------------------- |
| Publisher | <http://localhost:3000/auditlog/publisher/v1/project/{projectId}/graphql> |
| Admin | <http://localhost:3000/auditlog/admin/v1/project/{projectId}/environment/{environmentId}/graphql> |
| Enterprise | <http://localhost:3000/auditlog/enterprise/v1/graphql> |
| Viewer | <http://localhost:3000/auditlog/viewer/v1/graphql> |
| API | Endpoint |
| ---------- | --------------------------------------------------------------------------------------------------- |
| Publisher | `http://localhost:3000/auditlog/publisher/v1/project/{project_id}/graphql` |
| Admin | `http://localhost:3000/auditlog/admin/v1/project/{project_id}/environment/{environment_id}/graphql` |
| Enterprise | `http://localhost:3000/auditlog/enterprise/v1/graphql` |
| Viewer | `http://localhost:3000/auditlog/viewer/v1/graphql` |

## Search

Expand Down
Loading

0 comments on commit 3fa8124

Please sign in to comment.