Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ indexer.toml
.vscode/
# migrations/
.helix
.claude/

# Node.js related files
crates/dips/node_modules/
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
services:
indexer-service-rs:
image: ghcr.io/graphprotocol/indexer-service-rs:${TAG:-local}
build:
context: .
dockerfile: Dockerfile.indexer-service-rs

indexer-tap-agent:
image: ghcr.io/graphprotocol/indexer-tap-agent:${TAG:-local}
build:
context: .
dockerfile: Dockerfile.indexer-tap-agent
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ fmt:
cargo fmt
sqlx-prepare:
cargo sqlx prepare --workspace -- --all-targets --all-features

# Build images ghcr.io/graphprotocol/indexer-service-rs and ghcr.io/graphprotocol/indexer-tap-agent (defaults to :local; set TAG=... to override)
build-image:
docker compose build
Comment thread
RembrandtK marked this conversation as resolved.

psql-up:
@docker run -d --name indexer-rs-psql -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres
@sleep 5
Expand Down
Loading