Skip to content

Commit

Permalink
updated default config
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Aug 14, 2023
1 parent fa256a9 commit 80fc873
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions config/default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,24 @@ indexer:
# number of seconds to wait between each epoch (don't overload CL client)
syncEpochCooldown: 2


readerDatabase:
host: "127.0.0.1"
port: 5432
user: ""
password: ""
name: ""

writerDatabase:
host: "127.0.0.1"
port: 5432
user: ""
password: ""
name: ""
# database configuration
database:
engine: "sqlite" # sqlite / pgsql

# sqlite settings
sqlite:
file: "./explorer-db.sqlite"

# pgsql settings
pgsql:
host: "127.0.0.1"
port: 5432
user: ""
password: ""
name: ""
pgsqlWriter: # optional separate writer connection (used for replication setups)
host: ""
port: 5432
user: ""
password: ""
name: ""

0 comments on commit 80fc873

Please sign in to comment.