Schemas and utils for IPLD ETH Postgres database
Go to file
2023-09-20 12:14:16 -05:00
.github/workflows Fix typo in CI image build, simplify step (#142) 2023-09-01 00:55:10 +08:00
db/migrations update uml 2023-09-20 12:14:16 -05:00
scripts Startup script tweaks 2023-05-15 12:03:30 +08:00
.gitignore Add block hash to primary keys in transactions, receipts and logs tables (#100) 2022-07-07 16:21:06 +05:30
compose.yml Docker compose cleanup 2023-07-23 01:27:00 +08:00
Dockerfile fix after cherry-pick 2023-03-21 12:50:37 -05:00
LICENSE Initial commit 2021-05-13 17:14:05 -05:00
Makefile update uml 2023-09-20 12:14:16 -05:00
README.md Add block hash to primary keys in transactions, receipts and logs tables (#100) 2022-07-07 16:21:06 +05:30
schema.sql Remove get_child function 2023-07-23 01:27:00 +08:00
vulcanize_db.png update uml 2023-09-20 12:14:16 -05:00
vulcanize_db.uml update uml 2023-09-20 12:14:16 -05:00

ipld-eth-db

Schemas and utils for IPLD ETH Postgres database

Database UML

Run

  • Remove any existing containers / volumes:

    docker-compose down -v --remove-orphans
    
  • Spin up ipld-eth-db using an existing image:

    • Update image source used for running the migrations in docker-compose.yml (if required).

    • Run:

      docker-compose -f docker-compose.yml up
      
  • Spin up ipld-eth-db using a locally built image:

    • Update Dockerfile (if required).

    • Update build context used for running the migrations in docker-compose.test.yml (if required).

    • Run:

      docker-compose -f docker-compose.test.yml up --build