2021-05-28 11:26:40 +00:00
|
|
|
[server]
|
|
|
|
host = "127.0.0.1"
|
|
|
|
port = 3001
|
|
|
|
|
2021-06-03 12:01:21 +00:00
|
|
|
[database]
|
2021-06-04 09:49:30 +00:00
|
|
|
type = "postgres"
|
|
|
|
host = "localhost"
|
|
|
|
port = 5432
|
|
|
|
database = "erc20-watcher"
|
|
|
|
username = "postgres"
|
|
|
|
password = "postgres"
|
2021-06-03 12:01:21 +00:00
|
|
|
synchronize = true
|
2021-06-09 09:41:05 +00:00
|
|
|
logging = false
|
2021-05-28 11:26:40 +00:00
|
|
|
|
2021-06-08 10:37:52 +00:00
|
|
|
entities = [ "src/entity/**/*.ts" ]
|
|
|
|
migrations = [ "src/migration/**/*.ts" ]
|
|
|
|
subscribers = [ "src/subscriber/**/*.ts" ]
|
|
|
|
|
|
|
|
[database.cli]
|
|
|
|
entitiesDir = "src/entity"
|
|
|
|
migrationsDir = "src/migration"
|
|
|
|
subscribersDir = "src/subscriber"
|
|
|
|
|
2021-05-28 11:26:40 +00:00
|
|
|
[upstream]
|
|
|
|
gqlEndpoint = "http://127.0.0.1:8083/graphql"
|
2021-06-08 10:37:52 +00:00
|
|
|
gqlSubscriptionEndpoint = "http://127.0.0.1:5000/graphql"
|
2021-05-28 11:26:40 +00:00
|
|
|
|
|
|
|
[upstream.cache]
|
|
|
|
name = "requests"
|
2021-06-08 10:37:52 +00:00
|
|
|
enabled = false
|
2021-05-28 11:26:40 +00:00
|
|
|
deleteOnStart = false
|