-
Notifications
You must be signed in to change notification settings - Fork 3
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
DPLT-1084 Add support for Runner infrastructure #166
DPLT-1084 Add support for Runner infrastructure #166
Conversation
4fe8d93
to
a875e94
Compare
a875e94
to
7527250
Compare
database: process.env.PG_ADMIN_DATABASE, | ||
host: process.env.PG_HOST, | ||
port: Number(process.env.PG_PORT), | ||
user: process.env.PGUSER, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now using node-postgres & Postgres specified environment variables, these don't actually need to be defined, but I'm just doing it for explicitness.
@@ -39,7 +39,7 @@ export default class Indexer { | |||
this.network = network; | |||
this.deps = { | |||
fetch, | |||
s3: new AWS.S3({ region: process.env.REGION }), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This env var has been changed to AWS_REGION
, which is automatically pulled in from the environment.
51ad3be
to
6ddc549
Compare
"prettier": "^3.0.0", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.1.6" | ||
}, | ||
"dependencies": { | ||
"@near-lake/primitives": "^0.1.0", | ||
"pluralize": "^8.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dev dependencies are stripped from the docker build, and this was incorrectly placed there.
Merging as I need the |
This PR contains various changes to support the new Runner infra. I've added comments inline to provide context to the changes.