From c98048680e0d85a331dcd6103ec6bebb5ecd2461 Mon Sep 17 00:00:00 2001 From: Austin Turner Date: Thu, 28 Dec 2023 08:34:41 -0700 Subject: [PATCH] Added static outbound ip addresses to docs Changed build commands to include a pre-deploy task --- apps/docs/docs/getting-started/overview.mdx | 10 +++++++++- package.json | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/apps/docs/docs/getting-started/overview.mdx b/apps/docs/docs/getting-started/overview.mdx index 3a36bdbb4..fe4b297e8 100644 --- a/apps/docs/docs/getting-started/overview.mdx +++ b/apps/docs/docs/getting-started/overview.mdx @@ -7,7 +7,7 @@ sidebar_label: Overview slug: / --- -import OrgTroubleshootingTable from './\_org-troubleshooting-table.mdx'; +import OrgTroubleshootingTable from './_org-troubleshooting-table.mdx'; Jetstream is the most advanced toolkit for working with and administering Salesforce. We know that once you start using Jetstream, you'll wonder how you ever got on without it! @@ -38,6 +38,14 @@ You will be asked to choose an org type which is used to determine the which Sal - **Custom Login URL** - `https://my--domain.my.salesforce.com` +### Jetstream IP Addresses + +If you need to whitelist IP addresses for your org, Jetream will use one of the following three ip addresses: + +- `3.134.238.10` +- `3.129.111.220` +- `52.15.118.168` + ### Troubleshooting Tips diff --git a/package.json b/package.json index acbdc645e..01bfde893 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "start:cron:inactive-account-warning": "node dist/apps/cron-tasks/inactive-account-warning.js", "start:cron:inactive-account-deletion": "node dist/apps/cron-tasks/inactive-account-deletion.js", "start:cron:save-analytics-summary": "node dist/apps/cron-tasks/save-analytics-summary.js", - "build": "cross-env NODE_ENV=production npm-run-all db:generate build:core build:landing rollbar:upload-sourcemaps", + "build": "cross-env NODE_ENV=production npm-run-all db:generate build:core build:landing", + "build:pre-deploy": "cross-env NODE_ENV=production npm-run-all --parallel rollbar:upload-sourcemaps db:migrate", "build:core": "NODE_OPTIONS=--max_old_space_size=8192 nx run-many --target=build --parallel=3 --projects=jetstream,api,download-zip-sw --configuration=production", "build:affected": "nx affected --target=build --parallel=3 --configuration=production", "build:docker": "cross-env NODE_ENV=production npm-run-all db:generate build:client:docker build:api:docker build:sw build:landing generate:version",