Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added static outbound ip addresses to docs #688

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion apps/docs/docs/getting-started/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down Expand Up @@ -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

<OrgTroubleshootingTable />
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down