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

feat:creating new structure for monorepo #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AnoukRImola
Copy link

@AnoukRImola AnoukRImola commented Nov 22, 2024

Restructure project into monorepo architecture

Description

This PR restructures the project into a monorepo architecture to better organize our codebase and separate concerns between different applications and services. The restructuring was done using Bun for workspace management without the need for Turborepo.

  • Moved Hardhat contracts and configuration to apps/contract/
  • Relocated Next.js application to apps/web/
  • Integrated RainbowKit directly into the web application
  • Moved Supabase configuration to services/supabase/

Reference Issue

Directory Structure

burn-bounty-app/
├── apps/
│   ├── contract/
│   │   ├── contracts/
│   │   │   ├── Lock.sol
│   │   │   └── Task.sol
│   │   ├── ignition/modules
│   │   │   └── Lock.ts
│   │   ├── scripts/
│   │   │   └── deploy.js
│   │   ├── test/
│   │   │   └── Lock.ts
│   │   ├── bun.lockb
│   │   ├── hardhat.config.ts
│   │   ├── package.json
│   │   ├── README.md
│   │   └── tsconfig.json
│   └── web/
│       ├── app/
│       │   ├── agents/
│       │   │   └── page.tsx
│       │   ├── ai_sdk/
│       │   │   ├── agent/
│       │   │   │   ├── action.ts
│       │   │   │   └── page.tsx
│       │   │   ├── tools/
│       │   │   │   ├── README.md
│       │   │   │   ├── action.ts
│       │   │   │   └── page.tsx
│       │   │   ├── README.md
│       │   │   └── page.tsx
│       │   ├── api/
│       │   │   ├── chat/
│       │   │   │   ├── agents/
│       │   │   │   │  └── route.ts
│       │   │   │   ├── retrieval/
│       │   │   │   │  └── route.ts
│       │   │   │   ├── retrieval_agents/
│       │   │   │   │  └── route.ts
│       │   │   │   ├── structured_output/
│       │   │   │   │  └── route.ts
│       │   │   │   └── route.ts
│       │   │   └── retrieval/ingest/
│       │   │       └── route.ts
│       │   ├── generative_ui/
│       │   │   ├── ai/
│       │   │   │   ├── chain.tsx
│       │   │   │   ├── message.tsx
│       │   │   │   └── tools.tsx
│       │   │   ├── components/
│       │   │   │   ├── image.tsx
│       │   │   │   └── place.tsx
│       │   │   ├── utils/
│       │   │   │   ├── client.tsx
│       │   │   │   └── server.tsx
│       │   │   ├── README.md
│       │   │   ├── agent.tsx
│       │   │   ├── layout.tsx
│       │   │   ├── page.tsx
│       │   │   └── shared.tsx
│       │   ├── retrieval/
│       │   │   └── page.tsx
│       │   ├── retrieval_agents/
│       │   │   └── page.tsx
│       │   ├── structured_output/
│       │   │   └── page.tsx
│       │   ├── globals.css
│       │   ├── layout.tsx
│       │   ├── page.tsx
│       │   └── providers.tsx
│       ├── components/
│       │   ├── base/
│       │   │   ├── avatar.tsx
│       │   │   ├── button.tsx
│       │   │   ├── dialog.tsx
│       │   │   ├── input.tsx
│       │   │   └── textarea.tsx
│       │   ├── pages/
│       │   │   └── home.tsx
│       │   ├── ChatMessageBubble.tsx
│       │   ├── ChatWindow.tsx
│       │   ├── IntermediateStep.tsx
│       │   ├── Navbar.tsx
│       │   └── UploadDocumentsForm.tsx
│       ├── data/
│       │   └── DefaultRetrievalText.ts
│       ├── lib/
│       │   ├── config.ts
│       │   ├── supabase.ts
│       │   ├── utils.ts
│       │   └── wagmi.ts
│       ├── public/
│       ├── .eslintrc.json
│       ├── components.json
│       ├── next.config.js
│       ├── package.json
│       ├── postcss.config.js
│       ├── tailwind.config.js
│       └── tsconfig.json
├── services/
│   └── supabase/
│       ├──  migrations/
│       ├── config.toml
│       └── .gitignore
├── .env.example
├── .env.local
├── .gitignore
├── .nvmrc
├── .prettierrc.json
├── bun.lockb
├── LICENSE
├── next-env.d.ts
├── package.json
├── README.md
└── Taskfile.yaml

Summary by CodeRabbit

  • Chores
    • Introduced a new ESLint configuration to enhance coding standards and maintainability for Next.js applications.

Copy link

coderabbitai bot commented Nov 22, 2024

Walkthrough

A new ESLint configuration file named .eslintrc.json has been added to the apps/web directory. This file extends the ESLint settings from next/core-web-vitals, which is specifically designed for Next.js applications. The addition of this configuration is intended to enforce coding standards and best practices that enhance code quality and maintainability for the web application.

Changes

File Change Summary
apps/web/.eslintrc.json New file created extending ESLint configuration from next/core-web-vitals.

Possibly related issues

  • Upgrade to Monorepo Structure #3: The addition of the ESLint configuration supports the transition to a monorepo structure by enforcing coding standards across the new web application.

Poem

🐇 In the web's cozy nook,
A new config took a look,
With ESLint's guiding light,
Code quality shines bright!
Next.js, we now embrace,
Standards set, we quicken pace! 🌟


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between d965b3d and 15c19bc.

⛔ Files ignored due to path filters (242)
  • apps/web/.next/app-build-manifest.json is excluded by !**/.next/**
  • apps/web/.next/build-manifest.json is excluded by !**/.next/**
  • apps/web/.next/cache/.rscinfo is excluded by !**/.next/**
  • apps/web/.next/package.json is excluded by !**/.next/**
  • apps/web/.next/react-loadable-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/app-paths-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/app/page.js is excluded by !**/.next/**
  • apps/web/.next/server/app/page_client-reference-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/interception-route-rewrite-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/middleware-build-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/middleware-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/middleware-react-loadable-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/next-font-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/next-font-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/pages-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/server-reference-manifest.js is excluded by !**/.next/**
  • apps/web/.next/server/server-reference-manifest.json is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@ai-sdk.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@coinbase.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@lit-labs.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@lit.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@metamask.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@motionone.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@opentelemetry.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@radix-ui.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@rainbow-me.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@safe-global.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@stablelib.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@swc.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@tanstack.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@vanilla-extract.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@wagmi.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/@walletconnect.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/abitype.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/abort-controller.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/ai.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/async-mutex.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/atomic-sleep.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/bn.js.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/brorand.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/bufferutil.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/cbw-sdk.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/class-variance-authority.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/clsx.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/colorette.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/dateformat.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/debug.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/decode-uri-component.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/destr.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/detect-browser.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/dijkstrajs.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/elliptic.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/encode-utf8.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/end-of-stream.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/eth-block-tracker.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/eth-json-rpc-filters.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/eth-query.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/eth-rpc-errors.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/event-target-shim.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/eventsource-parser.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/fast-copy.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/fast-redact.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/fast-safe-stringify.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/filter-obj.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/get-nonce.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/hash.js.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/hey-listen.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/hmac-drbg.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/idb-keyval.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/inherits.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/json-rpc-engine.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/json-rpc-random-id.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/keccak.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/lit-element.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/lit-html.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/lit.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/lodash.isequal.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/lodash.merge.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/minimalistic-assert.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/minimalistic-crypto-utils.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/mipd.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/motion.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/ms.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/multiformats.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/nanoid.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/next.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/node-gyp-build.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/on-exit-leak-free.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/once.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pino-abstract-transport.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pino-pretty.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pino-std-serializers.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pino.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pngjs.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/preact.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/process-warning.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/process.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/proxy-compare.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/pump.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/qrcode.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/query-string.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/quick-format-unescaped.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/react-remove-scroll-bar.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/react-remove-scroll.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/react-style-singleton.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/react-toastify.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/readable-stream.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/safe-buffer.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/safe-stable-stringify.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/secure-json-parse.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/sha.js.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/sonic-boom.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/split-on-first.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/split2.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/strict-uri-encode.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/string_decoder.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/superstruct.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/supports-color.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/swr.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/tailwind-merge.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/thread-stream.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/tr46.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/ua-parser-js.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/uint8arrays.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/unstorage.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/use-callback-ref.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/use-sidecar.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/use-sync-external-store.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/utf-8-validate.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/util-deprecate.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/valtio.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/viem.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/wagmi.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/webidl-conversions.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/whatwg-url.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/wrappy.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/ws.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/xtend.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/zod-to-json-schema.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/zod.js is excluded by !**/.next/**
  • apps/web/.next/server/vendor-chunks/zustand.js is excluded by !**/.next/**
  • apps/web/.next/server/webpack-runtime.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_cbw-sdk_dist_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_coinbase_wallet-sdk_dist_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Arc-R3PUWRPJ_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Brave-24BM36UM_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Browser-4R4QKTV2_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Chrome-TLI42HDP_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Edge-AZ34LAFM_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Firefox-ZDK7RHKK_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Linux-VYP66PDO_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Macos-5QL4JBJE_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Opera-BKMCKUXC_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Safari-PXQIVS6N_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_Windows-GTAT3OTE_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ar_AR-EFG7DWCD_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_arbitrum-IA4OWRTN_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_assets-NU2OP443_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_avalanche-MXEFEDSW_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_base-Z4LFBE5D_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_blast-TN2WIMWF_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_bsc-RVE67I5L_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_celo-E6XU57FO_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_coinbaseWallet-WWX6LF36_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_connect-MR6XDLIE_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_create-X4WFHLCW_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_cronos-ROYR77VZ_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_en_US-762U7H2X_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_es_419-HHD3PTWJ_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ethereum-RFBAMUVK_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_fr_FR-YJOM2FKT_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_gnosis-T7U5EW2Q_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_hardhat-NEEC6JX7_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_hi_IN-6LCB42ZP_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_id_ID-XEJUOSPY_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ja_JP-Y2UY5DJF_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_klaytn-QTDBZIB3_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ko_KR-XEZDL32S_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_login-CWDTIDNK_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_manta-5V6W5D7G_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_mantle-KBL3OIYT_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_metaMaskWallet-YFHEHW7V_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_optimism-VD7XDD2W_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_polygon-WWEUOMKW_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_pt_BR-URWA5SSF_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_rainbowWallet-2SR6TVBF_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_refresh-HJGJRASX_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ronin-PNHX5V6H_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_ru_RU-S2JHPZU4_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_safeWallet-VUYZPLY4_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_scan-DEOT2M37_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_sign-A7IJEUT5_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_th_TH-ERMCTL3T_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_tr_TR-7U4SQPKU_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_uk_UA-EWJFZZZQ_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_vi_VN-PML3AXSR_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_walletConnectWallet-FNSU4KNU_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_xdc-X7V4QFNF_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zetachain-BMJKVYBN_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zh_CN-R6N3SRTH_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zh_HK-ZZAF3UAE_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zh_TW-KSS4HRUK_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zkSync-JL26RB7U_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_rainbow-me_rainbowkit_dist_zora-YZH32HP3_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_safe-global_safe-apps-provider_dist_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_safe-global_safe-apps-sdk_dist_esm_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_viem__esm_utils_ccip_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_walletconnect_ethereum-provider_dist_index_es_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_walletconnect_modal-ui_dist_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/_app-pages-browser_node_modules_walletconnect_modal_dist_index_js.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/app-pages-internals.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/app/layout.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/app/page.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/main-app.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/polyfills.js is excluded by !**/.next/**
  • apps/web/.next/static/chunks/webpack.js is excluded by !**/.next/**
  • apps/web/.next/static/css/app/layout.css is excluded by !**/.next/**
  • apps/web/.next/static/css/app/page.css is excluded by !**/.next/**
  • apps/web/.next/static/development/_buildManifest.js is excluded by !**/.next/**
  • apps/web/.next/static/development/_ssgManifest.js is excluded by !**/.next/**
  • apps/web/.next/static/media/8bf7b2ceda89477b-s.p.woff2 is excluded by !**/.next/**, !**/*.woff2
  • apps/web/.next/static/media/98baa4a7809fbf72-s.woff2 is excluded by !**/.next/**, !**/*.woff2
  • apps/web/.next/static/media/f7650dfaa438c37c-s.woff2 is excluded by !**/.next/**, !**/*.woff2
  • apps/web/.next/static/webpack/633457081244afec._.hot-update.json is excluded by !**/.next/**
  • apps/web/.next/static/webpack/96767c2566ab8818.webpack.hot-update.json is excluded by !**/.next/**
  • apps/web/.next/static/webpack/app/layout.96767c2566ab8818.hot-update.js is excluded by !**/.next/**
  • apps/web/.next/static/webpack/webpack.96767c2566ab8818.hot-update.js is excluded by !**/.next/**
  • apps/web/.next/trace is excluded by !**/.next/**
  • apps/web/.next/types/app/layout.ts is excluded by !**/.next/**
  • apps/web/.next/types/app/page.ts is excluded by !**/.next/**
  • apps/web/.next/types/cache-life.d.ts is excluded by !**/.next/**
  • apps/web/.next/types/package.json is excluded by !**/.next/**
  • apps/web/public/images/agent-conversation.png is excluded by !**/*.png
  • apps/web/public/images/agent-convo.gif is excluded by !**/*.gif
  • apps/web/public/images/bundle-size.png is excluded by !**/*.png
  • apps/web/public/images/chat-conversation.png is excluded by !**/*.png
  • apps/web/public/images/favicon.ico is excluded by !**/*.ico
  • apps/web/public/images/og-image.png is excluded by !**/*.png
  • apps/web/public/images/retrieval-agent-conversation.png is excluded by !**/*.png
  • apps/web/public/images/retrieval-chain-conversation.png is excluded by !**/*.png
  • apps/web/public/images/structured-output-conversation.png is excluded by !**/*.png
  • apps/web/public/images/title-card.png is excluded by !**/*.png
📒 Files selected for processing (1)
  • apps/web/.eslintrc.json (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • apps/web/.eslintrc.json

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

sourcery-ai bot commented Nov 22, 2024

🧙 Sourcery is reviewing your pull request!


Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant