watcher-ts/packages/address-watcher/environments/local.toml

39 lines
901 B
TOML
Raw Normal View History

[server]
host = "127.0.0.1"
port = 3002
[database]
2021-06-04 09:49:30 +00:00
type = "postgres"
host = "localhost"
port = 5432
database = "address-watcher"
2021-06-04 09:49:30 +00:00
username = "postgres"
password = "postgres"
synchronize = true
2021-06-21 13:25:13 +00:00
logging = false
entities = [ "src/entity/**/*.ts" ]
migrations = [ "src/migration/**/*.ts" ]
subscribers = [ "src/subscriber/**/*.ts" ]
[database.cli]
entitiesDir = "src/entity"
migrationsDir = "src/migration"
subscribersDir = "src/subscriber"
[upstream]
2021-06-21 13:25:13 +00:00
traceProviderEndpoint = "http://127.0.0.1:8545"
2021-07-15 07:40:07 +00:00
[upstream.ethServer]
gqlApiEndpoint = "http://127.0.0.1:8082/graphql"
gqlPostgraphileEndpoint = "http://127.0.0.1:5000/graphql"
[upstream.cache]
name = "requests"
enabled = false
deleteOnStart = false
[jobQueue]
dbConnectionString = "postgres://postgres:postgres@localhost/address-watcher-job-queue"
maxCompletionLagInSecs = 300