Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Road to v1: service unification, indexing dashboard and other improvements #92

Merged
merged 34 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6cbf1f5
Adjust log levels
neysofu Dec 4, 2023
ad362d5
Adjust log levels
neysofu Dec 4, 2023
791ed74
Add support for graph-node version
neysofu Dec 11, 2023
b1c9b21
Use containerized store tests
neysofu Dec 11, 2023
a39d757
Add previously removed test
neysofu Dec 11, 2023
85daa56
Rename `NetworkSubgraphClient`
neysofu Dec 11, 2023
cd3a1ac
Rename network subgraph directory, remove dead code
neysofu Dec 11, 2023
aa9622c
Add network subgraph client test
neysofu Dec 11, 2023
9780a4b
Fix query variable
neysofu Dec 11, 2023
62313bd
Much more effective network subgraph queries
neysofu Dec 11, 2023
8836c58
Add indexer and network info on Grafana
neysofu Dec 11, 2023
a7329e6
Removed dead file
neysofu Dec 11, 2023
560deac
More clearly separate indexer name and ID
neysofu Dec 11, 2023
3af1ea0
Remove unused struct IndexerRow
neysofu Dec 11, 2023
9ce2cd3
Add IndexerId trait, indexer_network_subgraph_entry
neysofu Dec 11, 2023
f33ebe8
Simplify API of `graphql_api` module
neysofu Dec 11, 2023
3f58d9d
Update to Rust 1.75
neysofu Jan 22, 2024
68dbb87
Delete frontend code
neysofu Jan 22, 2024
aa3c518
Remove useless .clone()
neysofu Jan 22, 2024
18f2374
Fix all Clippy warnings
neysofu Jan 22, 2024
7b5ada3
Update async-graphql to v7.0.1
neysofu Jan 22, 2024
1193ccf
Switch `api-server` from Warp to Axum
neysofu Jan 22, 2024
5eeaa2c
Remove unused .gitkeep
neysofu Jan 22, 2024
b9e5980
Remove prelude modue; explicit imports
neysofu Jan 22, 2024
58ef385
cargo +nightly fmt --all
neysofu Jan 22, 2024
a01f631
Make indexer addresses non-optional
neysofu Jan 22, 2024
928212a
wip refactor
neysofu Jan 29, 2024
aae0fa6
get it to compile
neysofu Jan 29, 2024
7bf84df
cargo +nightly fmt --all
neysofu Jan 29, 2024
caecc9f
Reduce name cloning
neysofu Jan 29, 2024
df023e9
Reduce name cloning part 2
neysofu Jan 29, 2024
0628c63
Fix a few tests
neysofu Jan 29, 2024
fabe88f
Fix docker-compose
neysofu Jan 29, 2024
222f24c
Fix binary running conditions
neysofu Jan 29, 2024
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
13 changes: 2 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,11 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push API server Docker image
- name: Build and push Graphix backend Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ops/api-server.dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/graphix-api-server:latest
- name: Build and push cross-checker service Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ops/cross-checker.dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/graphix-cross-checker:latest
tags: ghcr.io/${{ github.repository_owner }}/graphix:latest

build:
name: Build
Expand Down
Loading
Loading