Make sure to clone the blockchain-analysis-backend git repository and run the backend service with docker compose up
This is the frontend website built in Next.js for the analysis backend. This supports all the analysis modules along with
cd frontend
npm installSet environment variables to your backend endpoint
cd frontend
export NEXT_PUBLIC_GRAPHQL_ENDPOINT=http://localhost:3000/graphql/
export NEXT_PUBLIC_GRAPHQL_WS_ENDPOINT=ws://localhost:3000/graphql
npm run devcd frontend
npm run build
export NEXT_PUBLIC_GRAPHQL_ENDPOINT=<production_graphql_http>
export NEXT_PUBLIC_GRAPHQL_WS_ENDPOINT=<production_graphql_websocket>
npm run start