├── .eslintrc.cjs ├── .github └── workflows │ ├── lint.yml │ └── smoke.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── babel.config.cjs ├── docs ├── FAQ.md ├── README.md ├── chains.md ├── dataset │ ├── _category_.json │ ├── awscli.md │ ├── goldsky_cli.md │ └── rclone.md ├── examples │ ├── _category_.json │ ├── benthos_local_hasura.md │ ├── benthos_postgres_hasura.md │ ├── databend.md │ ├── duckdb.md │ └── imgs │ │ └── goldsky_databend.png └── schema.md ├── docusaurus.config.cjs ├── package.json ├── pnpm-lock.yaml ├── sidebars.cjs ├── src └── css │ └── custom.css ├── static ├── img │ ├── hasura_track_table.png │ ├── indexed-logo.svg │ ├── indexed-wordmark-dark.png │ ├── indexed-wordmark-light.svg │ ├── neondb_reset_pw.png │ └── twitter-card.png └── local_benthos_hasura │ ├── benthos.yaml │ ├── cleanup.sh │ └── docker-compose.yaml └── stylelint.config.cjs /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.github/workflows/smoke.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('prettier').Config} */ 2 | module.exports = { 3 | singleQuote: true, 4 | }; 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/chains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/chains.md -------------------------------------------------------------------------------- /docs/dataset/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/dataset/_category_.json -------------------------------------------------------------------------------- /docs/dataset/awscli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/dataset/awscli.md -------------------------------------------------------------------------------- /docs/dataset/goldsky_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/dataset/goldsky_cli.md -------------------------------------------------------------------------------- /docs/dataset/rclone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/dataset/rclone.md -------------------------------------------------------------------------------- /docs/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/_category_.json -------------------------------------------------------------------------------- /docs/examples/benthos_local_hasura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/benthos_local_hasura.md -------------------------------------------------------------------------------- /docs/examples/benthos_postgres_hasura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/benthos_postgres_hasura.md -------------------------------------------------------------------------------- /docs/examples/databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/databend.md -------------------------------------------------------------------------------- /docs/examples/duckdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/duckdb.md -------------------------------------------------------------------------------- /docs/examples/imgs/goldsky_databend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/examples/imgs/goldsky_databend.png -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docusaurus.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/docusaurus.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /sidebars.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/sidebars.cjs -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /static/img/hasura_track_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/hasura_track_table.png -------------------------------------------------------------------------------- /static/img/indexed-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/indexed-logo.svg -------------------------------------------------------------------------------- /static/img/indexed-wordmark-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/indexed-wordmark-dark.png -------------------------------------------------------------------------------- /static/img/indexed-wordmark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/indexed-wordmark-light.svg -------------------------------------------------------------------------------- /static/img/neondb_reset_pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/neondb_reset_pw.png -------------------------------------------------------------------------------- /static/img/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/img/twitter-card.png -------------------------------------------------------------------------------- /static/local_benthos_hasura/benthos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/local_benthos_hasura/benthos.yaml -------------------------------------------------------------------------------- /static/local_benthos_hasura/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/local_benthos_hasura/cleanup.sh -------------------------------------------------------------------------------- /static/local_benthos_hasura/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/static/local_benthos_hasura/docker-compose.yaml -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexed-xyz/docs/HEAD/stylelint.config.cjs --------------------------------------------------------------------------------