-
Notifications
You must be signed in to change notification settings - Fork 508
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: AdonisJS + Unkey Ratelimit route #2493
Conversation
|
@Ionfinisher is attempting to deploy a commit to the Unkey Team on Vercel. A member of the Team first needs to authorize it. |
📝 WalkthroughWalkthroughThe pull request introduces a new entry to the documentation for templates that demonstrate the integration of Unkey with the AdonisJS framework. This entry includes details such as the date, author, title, and a link to the corresponding repository. The update aims to enhance the collection of templates available for developers looking to implement API protection using Unkey. Changes
Assessment against linked issues
Possibly related PRs
Suggested labels
Suggested reviewers
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? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Thank you for following the naming conventions for pull request titles! 🙏 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
» 18-October-2024 Teddy ASSIH [AdonisJS + Unkey Ratelimit starter](https://github.com/Ionfinisher/unkey-adonisjs-ratelimit) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Missing MIT License in the repository.
The repository Ionfinisher/unkey-adonisjs-ratelimit does not contain an MIT License. Please add an MIT License to comply with the requirements.
🔗 Analysis chain
LGTM! New entry follows the correct format.
The new entry for the AdonisJS + Unkey Ratelimit starter template is correctly formatted and consistent with previous entries. It appears to meet the basic requirements stated in the file.
To ensure full compliance with the requirements, please verify:
- The repository is MIT licensed.
- The repository contains a README.md file with a quickstart guide.
You can use the following script to check these requirements:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Description: Verify MIT license and README.md existence in the new template repository
# Clone the repository
git clone https://github.com/Ionfinisher/unkey-adonisjs-ratelimit.git temp_repo
cd temp_repo
# Check for MIT license
if grep -q "MIT License" LICENSE; then
echo "MIT License found"
else
echo "MIT License not found"
fi
# Check for README.md and look for quickstart guide
if [ -f README.md ]; then
echo "README.md found"
if grep -iq "quickstart" README.md; then
echo "Quickstart guide found in README.md"
else
echo "Quickstart guide not found in README.md"
fi
else
echo "README.md not found"
fi
# Clean up
cd ..
rm -rf temp_repo
Length of output: 516
/award 750 |
Awarding Ionfinisher: 750 points 🕹️ Well done! Check out your new contribution on oss.gg/Ionfinisher |
Ratelimiting AdonisJS routes with Unkey
Github repo: https://github.com/Ionfinisher/unkey-adonisjs-ratelimit
Fixes #2150
Summary by CodeRabbit