Skip to content

Commit 14d2191

Browse files
authored
Merge pull request #17794 from github/repo-sync
repo sync
2 parents 74065fe + 3703882 commit 14d2191

File tree

6 files changed

+811
-1
lines changed

6 files changed

+811
-1
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
babelOptions: { configFile: './.babelrc' },
1414
sourceType: 'module',
1515
},
16-
ignorePatterns: ['tmp/*', '!/.*', '/.next/', 'script/bookmarklets/*'],
16+
ignorePatterns: ['tmp/*', '!/.*', '/.next/', 'script/bookmarklets/*', 'lib/sigsci.js'],
1717
rules: {
1818
'import/no-extraneous-dependencies': ['error', { packageDir: '.' }],
1919
},

docker-compose.prod.tmpl.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ services:
1919
HEROKU_PRODUCTION_APP: true
2020
PORT: 4000
2121
DD_AGENT_HOST: datadog-agent
22+
SIGSCI_RPC_ADDRESS: sigsci-agent:8000
2223
depends_on:
2324
- datadog-agent
2425
restart: always
@@ -31,3 +32,12 @@ services:
3132
DD_API_KEY: ${DD_API_KEY}
3233
DD_AGENT_HOST: datadog-agent
3334
DD_HISTOGRAM_PERCENTILES: 0.99 0.95 0.50
35+
36+
sigsci-agent:
37+
image: signalsciences/sigsci-agent
38+
ports:
39+
- '8000:8000'
40+
environment:
41+
SIGSCI_RPC_ADDRESS: 0.0.0.0:8000
42+
SIGSCI_ACCESSKEY: ${SIGSCI_ACCESSKEYID}
43+
SIGSCI_SECRETACCESSKEY: ${SIGSCI_SECRETACCESSKEY}

0 commit comments

Comments
 (0)