Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 49 minutes and 14 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request updates the README.md to include instructions for installing and using the published CLI, alongside the existing local development setup. The documentation now covers global and local npm installations, CLI configuration, and team imports. Feedback was provided to clarify the use of npx for local installations and to specify the DATABASE_URL requirement for the team import command.
| npx involute --help | ||
| ``` | ||
|
|
||
| Point the CLI at your Involute API: |
There was a problem hiding this comment.
Since both global and local installation methods are shown, it's helpful to clarify that the subsequent examples assume a global installation. Users who chose the local path will need to use npx involute instead of just involute.
| Point the CLI at your Involute API: | |
| Point the CLI at your Involute API (use `npx involute` if installed locally): |
| involute teams list | ||
| ``` | ||
|
|
||
| Import and verify one team snapshot: |
There was a problem hiding this comment.
The involute import team command requires the DATABASE_URL environment variable to be set, as it connects directly to the database via Prisma. This is not required for the API-based commands like teams list. Explicitly mentioning this requirement prevents users from encountering connection errors when following this 'fastest' path.
| Import and verify one team snapshot: | |
| Import and verify one team snapshot (requires `DATABASE_URL` to be set): |
Summary
Validation