Skip to content

Commit 57b3e09

Browse files
committed
initial commit for develop branch
1 parent 4df3da1 commit 57b3e09

File tree

191 files changed

+36940
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+36940
-1
lines changed

.env.example

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# rename this file to .env and supply the values listed below
3+
# also make sure they are available to the build tool (e.g. netlify)
4+
# warning: variables prefixed with GATSBY_ will be made available to client-side code
5+
# be careful not to expose sensitive data (in this case your Algolia admin key)
6+
7+
GATSBY_ALGOLIA_APP_ID=insertValue
8+
GATSBY_ALGOLIA_SEARCH_KEY=insertValue
9+
ALGOLIA_ADMIN_KEY=insertValue

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/*
2+
public/*

.eslintrc.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es6: true,
5+
jest: true,
6+
},
7+
globals: {
8+
Atomics: 'readonly',
9+
SharedArrayBuffer: 'readonly',
10+
},
11+
parser: '@babel/eslint-parser',
12+
parserOptions: {
13+
requireConfigFile: false,
14+
ecmaFeatures: {
15+
jsx: true,
16+
},
17+
babelOptions: {
18+
presets: ["@babel/preset-react"]
19+
},
20+
ecmaVersion: 2018,
21+
sourceType: 'module',
22+
},
23+
plugins: [
24+
'react',
25+
],
26+
rules: {
27+
'react/prop-types': 'off',
28+
'jsx-a11y/media-has-caption': 'off',
29+
'no-underscore-dangle': 'off',
30+
'max-len': 'off',
31+
},
32+
};

.github/ISSUE_TEMPLATE/bug_report.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Bug report
3+
about: Report typos, broken links, or other documentation errors
4+
title: ''
5+
labels: bug
6+
assignees: jkonrath-postman
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Pages affected**
14+
If possible, list URLs of pages where the error occurs.
15+
16+
**Screenshots**
17+
If applicable, add screenshots to help explain the issue.
18+
19+
**Additional context**
20+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Postman App Support Issues
4+
url: https://github.com/postmanlabs/postman-app-support/issues/new
5+
about: Please file all app-related issues here
6+
- name: Postman Learning Center
7+
url: https://learning.postman.com
8+
about: Learn how to use Postman in our Learning Center
9+
- name: Postman Community Forum
10+
url: https://community.postman.com
11+
about: Get support and connect to the community on our forum
12+
- name: Postman Support Team
13+
url: https://support.postman.com/hc/en-us/requests/new/
14+
about: Open a new request with the Postman Support Team
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Documentation request
3+
about: Suggest ideas for new documentation
4+
title: ''
5+
labels: enhancement
6+
assignees: jkonrath-postman
7+
8+
---
9+
10+
**Is your request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. For example: "After reviewing the docs, I'm still not sure how to [...]"
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/stale.yml

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale, https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
# daysUntilStale: 7
5+
6+
# Number of days (30) of inactivity before an Issue or Pull Request with the stale label is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: false
9+
10+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11+
onlyLabels: []
12+
13+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14+
exemptLabels: []
15+
# - pinned
16+
# - security
17+
# - "[Status] Maybe Later"
18+
19+
# Set to true to ignore issues in a project (defaults to false)
20+
exemptProjects: false
21+
22+
# Set to true to ignore issues in a milestone (defaults to false)
23+
exemptMilestones: false
24+
25+
# Set to true to ignore issues with an assignee (defaults to false)
26+
exemptAssignees: false
27+
28+
# Label to use when marking as stale
29+
staleLabel: stale
30+
31+
# Comment to post when marking as stale. Set to `false` to disable
32+
# markComment: >
33+
# This issue has been automatically marked as stale because it has not had
34+
# recent activity. It will be closed if no further activity occurs. Thank you
35+
# for your contributions.
36+
37+
# Comment to post when removing the stale label.
38+
# unmarkComment: >
39+
# Your comment here.
40+
41+
# Comment to post when closing a stale Issue or Pull Request.
42+
# closeComment: >
43+
# Your comment here.
44+
45+
# Limit the number of actions per hour, from 1-30. Default is 30
46+
limitPerRun: 30
47+
48+
# Limit to only `issues` or `pulls`
49+
# only: issues
50+
51+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
52+
pulls:
53+
daysUntilStale: 10
54+
markComment: >
55+
This pull request has been automatically marked as stale because it has not had
56+
recent activity. Thank you for your contributions.
57+
58+
issues:
59+
daysUntilStale: 60
60+
markComment: >
61+
This issue has been automatically marked as stale because it has not had
62+
recent activity. Thank you for your contributions.
63+
64+
# issues:
65+
# exemptLabels:
66+
# - confirmed

.github/workflows/ci.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- develop
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: actions/setup-node@master
16+
with:
17+
node-version: '14'
18+
- name: lint all markdownfiles
19+
env:
20+
PM_TECH: ${{secrets.PM_TECH}}
21+
run: |
22+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
23+
npm install
24+
node_modules/.bin/markdownlint ./ --ignore node_modules
25+
- name: check for image url
26+
run: |
27+
if grep -lri 's3.amazonaws.com/postman-static-getpostman-com' ./src/pages/docs ;
28+
then echo "Invalid s3 references found. Please use format 'https://assets.postman.com/postman-docs/[filename-in-s3]'";
29+
exit 1;
30+
else echo "no s3 references found";
31+
fi
32+
- name: running unit tests
33+
env:
34+
PM_TECH: ${{secrets.PM_TECH}}
35+
run: |
36+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
37+
npm install
38+
npm run clean
39+
npm run test:update
40+

.github/workflows/deploy.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: actions/setup-node@master
16+
with:
17+
node-version: '14'
18+
- name: set AWS, BFF and Algolia Keys to environment
19+
env:
20+
GATSBY_ALGOLIA_APP_ID: ${{ secrets.GATSBY_ALGOLIA_APP_ID}}
21+
GATSBY_ALGOLIA_DEV_KEY: ${{secrets.GATSBY_ALGOLIA_DEV_KEY}}
22+
ALGOLIA_ADMIN_KEY: ${{secrets.ALGOLIA_ADMIN_KEY}}
23+
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
24+
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
25+
DIST_ID: ${{secrets.DIST_ID}}
26+
MUNCHKIN_ID: ${{ secrets.MUNCHKIN_ID}}
27+
BFF_BLOG_URL: ${{ secrets.BFF_BLOG_URL }}
28+
BFF_EVENTS_URL: ${{ secrets.BFF_EVENTS_URL }}
29+
BFF_PING_WEBHOOK_URL: $ {{ secrets.BFF_PING_WEBHOOK_URL }}
30+
RELIC_ACCOUNT_ID: ${{ secrets.RELIC_ACCOUNT_ID }}
31+
RELIC_TRUST_KEY: ${{ secrets.RELIC_TRUST_KEY }}
32+
RELIC_LICENSE_KEY: ${{ secrets.RELIC_LICENSE_KEY }}
33+
RELIC_PRODUCTION_AGENT_ID: ${{ secrets.RELIC_PRODUCTION_AGENT_ID }}
34+
RELIC_PRODUCTION_APPLICATION_ID: ${{ secrets.RELIC_PRODUCTION_APPLICATION_ID }}
35+
PM_TECH: ${{secrets.PM_TECH}}
36+
SITE_URL: ${{secrets.SITE_URL_BETA}}
37+
38+
run: |
39+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
40+
npm install
41+
npm run clean
42+
npm run build:dev && node_modules/s3-deploy/bin/s3-deploy './public/**' --cwd './public/' --bucket postman-learning-center-beta --deleteRemoved --distId $DIST_ID --invalidate '/*'
43+
44+
- name: update Algolia with GA Pageviews
45+
env:
46+
ALGOLIA_ADMIN_KEY: ${{secrets.ALGOLIA_ADMIN_KEY}}
47+
GOOGLE_ALGOLIA_CREDENTIALS: ${{secrets.GOOGLE_ALGOLIA_CREDENTIALS}}
48+
GOOGLE_PROJECT_ID: ${{secrets.GOOGLE_PROJECT_ID}}
49+
GOOGLE_PRIVATE_KEY: ${{secrets.GOOGLE_PRIVATE_KEY}}
50+
GOOGLE_PRIVATE_KEY_2: ${{secrets.GOOGLE_PRIVATE_KEY_2}}
51+
GOOGLE_CLIENT_EMAIL: ${{secrets.GOOGLE_CLIENT_EMAIL}}
52+
GOOGLE_CLIENT_ID: ${{secrets.GOOGLE_CLIENT_ID}}
53+
GOOGLE_AUTH_CERT: ${{secrets.GOOGLE_AUTH_CERT}}
54+
GOOGLE_CLIENT_CERT: ${{secrets.GOOGLE_CLIENT_CERT}}
55+
PM_TECH: ${{secrets.PM_TECH}}
56+
run: |
57+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
58+
npm install;
59+
type=service_account project_id=$GOOGLE_PROJECT_ID private_key_id=$GOOGLE_PRIVATE_KEY private_key=$GOOGLE_PRIVATE_KEY_2 client_email=$GOOGLE_CLIENT_EMAIL client_id=$GOOGLE_CLIENT_ID auth_uri=https://accounts.google.com/o/oauth2/auth token_uri=https://oauth2.googleapis.com/token auth_provider_x509_cert_url=$GOOGLE_AUTH_CERT client_x509_cert_url=$GOOGLE_CLIENT_CERT node -p -e 'const {type,private_key_id,private_key,project_id,client_email,client_id,auth_uri,token_uri,auth_provider_x509_cert_url,client_x509_cert_url} = process.env; require("fs").writeFile("auth.json", JSON.stringify({type,project_id,private_key_id,private_key:private_key.replace(/\\n/g,"\n"),client_email,client_id,auth_uri,token_uri,auth_provider_x509_cert_url,client_x509_cert_url},null,2), err=>{})'
60+
GOOGLE_APPLICATION_CREDENTIALS=auth.json ALGOLIA_ADMIN_KEY=$ALGOLIA_ADMIN_KEY node ga_connector.js;
61+
rm -rf auth.json
62+
63+
64+
65+
66+
67+

.github/workflows/manual-rerun.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
name: manually re-running actions
3+
4+
on: repository_dispatch
5+
6+
jobs:
7+
manual_deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: actions/setup-node@master
12+
with:
13+
node-version: '14'
14+
- name: lint all markdownfiles
15+
env:
16+
PM_TECH: ${{secrets.PM_TECH}}
17+
run: |
18+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
19+
npm install
20+
node_modules/.bin/markdownlint ./ --ignore node_modules
21+
- name: check for image url
22+
run: |
23+
if grep -lri 's3.amazonaws.com/postman-static-getpostman-com' ./src/pages/docs ;
24+
then echo "Invalid s3 references found. Please use format 'https://assets.postman.com/postman-docs/[filename-in-s3]'";
25+
exit 1;
26+
else echo "no s3 references found";
27+
fi
28+
- name: running unit tests
29+
env:
30+
PM_TECH: ${{secrets.PM_TECH}}
31+
run: |
32+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
33+
npm install
34+
npm run clean
35+
npm run test:update

.github/workflows/prod-deploy.yml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Prod Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: actions/setup-node@master
16+
with:
17+
node-version: '14'
18+
- name: set AWS, BFF, NewRelic and Algolia Keys to environment
19+
env:
20+
GATSBY_ALGOLIA_APP_ID: ${{ secrets.GATSBY_ALGOLIA_APP_ID}}
21+
GATSBY_ALGOLIA_SEARCH_KEY: ${{secrets.GATSBY_ALGOLIA_SEARCH_KEY}}
22+
ALGOLIA_ADMIN_KEY: ${{secrets.ALGOLIA_ADMIN_KEY}}
23+
AWS_ACCESS_KEY_ID: ${{secrets.PROD_AWS_ACCESS_KEY_ID}}
24+
AWS_SECRET_ACCESS_KEY: ${{secrets.PROD_AWS_SECRET_ACCESS_KEY}}
25+
DIST_ID: ${{secrets.PROD_DIST_ID}}
26+
MUNCHKIN_ID: ${{ secrets.MUNCHKIN_ID}}
27+
BFF_BLOG_URL: ${{ secrets.BFF_BLOG_URL }}
28+
BFF_EVENTS_URL: ${{ secrets.BFF_EVENTS_URL }}
29+
BFF_PING_WEBHOOK_URL: ${{ secrets.BFF_PING_WEBHOOK_URL }}
30+
RELIC_ACCOUNT_ID: ${{ secrets.RELIC_ACCOUNT_ID }}
31+
RELIC_TRUST_KEY: ${{ secrets.RELIC_TRUST_KEY }}
32+
RELIC_LICENSE_KEY: ${{ secrets.RELIC_LICENSE_KEY }}
33+
RELIC_PRODUCTION_AGENT_ID: ${{ secrets.RELIC_PRODUCTION_AGENT_ID }}
34+
RELIC_PRODUCTION_APPLICATION_ID: ${{ secrets.RELIC_PRODUCTION_APPLICATION_ID }}
35+
PM_TECH: ${{secrets.PM_TECH}}
36+
SITE_URL: ${{secrets.SITE_URL_PROD}}
37+
38+
run: |
39+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
40+
npm install
41+
npm run clean
42+
npm run build:prod && node_modules/s3-deploy/bin/s3-deploy './public/**' --cwd './public/' --bucket postman-learning-center-prod --deleteRemoved --distId $DIST_ID --invalidate '/*'
43+
- name: update Algolia with GA Pageviews
44+
env:
45+
ALGOLIA_ADMIN_KEY: ${{secrets.ALGOLIA_ADMIN_KEY}}
46+
GOOGLE_ALGOLIA_CREDENTIALS: ${{secrets.GOOGLE_ALGOLIA_CREDENTIALS}}
47+
GOOGLE_PROJECT_ID: ${{secrets.GOOGLE_PROJECT_ID}}
48+
GOOGLE_PRIVATE_KEY: ${{secrets.GOOGLE_PRIVATE_KEY}}
49+
GOOGLE_PRIVATE_KEY_2: ${{secrets.GOOGLE_PRIVATE_KEY_2}}
50+
GOOGLE_CLIENT_EMAIL: ${{secrets.GOOGLE_CLIENT_EMAIL}}
51+
GOOGLE_CLIENT_ID: ${{secrets.GOOGLE_CLIENT_ID}}
52+
GOOGLE_AUTH_CERT: ${{secrets.GOOGLE_AUTH_CERT}}
53+
GOOGLE_CLIENT_CERT: ${{secrets.GOOGLE_CLIENT_CERT}}
54+
PM_TECH: ${{secrets.PM_TECH}}
55+
run: |
56+
npm config set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}
57+
npm install;
58+
type=service_account project_id=$GOOGLE_PROJECT_ID private_key_id=$GOOGLE_PRIVATE_KEY private_key=$GOOGLE_PRIVATE_KEY_2 client_email=$GOOGLE_CLIENT_EMAIL client_id=$GOOGLE_CLIENT_ID auth_uri=https://accounts.google.com/o/oauth2/auth token_uri=https://oauth2.googleapis.com/token auth_provider_x509_cert_url=$GOOGLE_AUTH_CERT client_x509_cert_url=$GOOGLE_CLIENT_CERT node -p -e 'const {type,private_key_id,private_key,project_id,client_email,client_id,auth_uri,token_uri,auth_provider_x509_cert_url,client_x509_cert_url} = process.env; require("fs").writeFile("auth.json", JSON.stringify({type,project_id,private_key_id,private_key:private_key.replace(/\\n/g,"\n"),client_email,client_id,auth_uri,token_uri,auth_provider_x509_cert_url,client_x509_cert_url},null,2), err=>{})'
59+
GOOGLE_APPLICATION_CREDENTIALS=auth.json ALGOLIA_ADMIN_KEY=$ALGOLIA_ADMIN_KEY node ga_connector.js;
60+
rm -rf auth.json
61+

0 commit comments

Comments
 (0)