Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Commit aa505bf

Browse files
committed
chore: enable apigee portal
1 parent 4bb47ed commit aa505bf

File tree

6 files changed

+55
-0
lines changed

6 files changed

+55
-0
lines changed

.env.development

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
APIGEE_PROXY_URL=<Your deployment URL from Apigee>
2+
APIGEE_ORG_NAME=<Your Apigee organization name>
3+
APIGEE_VERSION=apigeex #or apigeeedge

.env.production

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
APIGEE_PROXY_URL=<Your deployment URL from Apigee>
2+
APIGEE_ORG_NAME=<Your Apigee organization name>
3+
APIGEE_VERSION=apigeex #or apigeeedge

app.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: App
3+
matchPath: '/app/*'
4+
requestLogin: true
5+
---
6+
7+
import { AppPage } from '@redocly/developer-portal/apigee';
8+
import { FullWidthLayout } from '@redocly/developer-portal/ui';
9+
10+
export default FullWidthLayout;
11+
12+
<AppPage />

apps.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Apps list
3+
requestLogin: true
4+
---
5+
6+
import { AppsPage } from '@redocly/developer-portal/apigee';
7+
import { FullWidthLayout } from '@redocly/developer-portal/ui';
8+
9+
export default FullWidthLayout;
10+
11+
<AppsPage />

create-app.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Create app
3+
requestLogin: true
4+
---
5+
6+
import { CreateAppPage } from '@redocly/developer-portal/apigee';
7+
import { FullWidthLayout } from '@redocly/developer-portal/ui';
8+
9+
export default FullWidthLayout;
10+
11+
<CreateAppPage />

siteConfig.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,21 @@ nav:
2828

2929
- search: true
3030

31+
login:
32+
label: Sign in/Sign up
33+
userAvatar: # can be false
34+
claim: picture
35+
fallbackLettersClaim: name
36+
userLabel: # can be false, but one of those must be not false
37+
claim: name
38+
fallback: <unknown user>
39+
menu:
40+
- label: Apps
41+
page: apps.mdx
42+
- separatorLine: true
43+
- label: Sign out
44+
logout: true
45+
3146
footer:
3247
copyrightText: Copyright © Redocly 2019-2021. All right reserved.
3348
columns:

0 commit comments

Comments
 (0)