# Server
cd ./server && yarn && yarn dev
# Client
cd ./client && yarn && yarn dev
# Postgres
docker compose up db
# or run a local postgres
docker compose up --build
http://localhost:3001 http://127.0.0.1:3001
- The backend will begin fetching transactions in batches from
https://fullnode.mainnet.aptoslabs.com/v1
and store them in the database - The server will send a 202 with Retry-After 10 seconds
- Client will re-request after 10 seconds
- Subsequent requests will return data from the database