This is KaguraSwap monorepo
yarn
docker-compose up
yarn dev
# in hasura package directory
# apply metadata, this will connect Hasura to the configured databases.
hasura metadata apply --endpoint <endpoint> --admin-secret <token>
# apply migrations to the connected databases.
hasura migrate apply --all-databases --endpoint <endpoint> --admin-secret <token>
# reload metadata to make sure Hasura is aware of any newly created database objects.
hasura metadata reload --endpoint <endpoint> --admin-secret <token>