-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features: Subscribe to daily claim payouts for validator/nominator wallets Monitor commission change events Closes #3
- Loading branch information
1 parent
6c015a5
commit e28944e
Showing
39 changed files
with
2,019 additions
and
892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:16 | ||
FROM node:20-alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: '3.1' | ||
name: xx-monitor-bot-dev | ||
services: | ||
|
||
mongo-express: | ||
image: mongo-express | ||
restart: always | ||
depends_on: | ||
- mongo | ||
ports: | ||
- ${ME_PORT}:8081 | ||
environment: | ||
- ME_CONFIG_MONGODB_ADMINUSERNAME=${MONGO_INITDB_ROOT_USERNAME} | ||
- ME_CONFIG_MONGODB_ADMINPASSWORD=${MONGO_INITDB_ROOT_PASSWORD} | ||
- ME_CONFIG_MONGODB_SERVER=${MONGO_CONTAINER_NAME} | ||
- ME_CONFIG_MONGODB_PORT=${MONGO_PORT} | ||
- ME_CONFIG_BASICAUTH_USERNAME | ||
- ME_CONFIG_BASICAUTH_PASSWORD | ||
|
||
bot: | ||
environment: | ||
- NODE_ENV=development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.