-
-
Notifications
You must be signed in to change notification settings - Fork 280
docs(quickstarts): add PHP quickstarter and improve C++ quickstarter (fixes #3521) #777
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -0,0 +1,280 @@ | ||||
| --- | ||||
| ````markdown | ||||
| --- | ||||
| id: samples-cpp-mongodb | ||||
| title: Sample CRUD App (C++) | ||||
| sidebar_label: C++ + MongoDB | ||||
| description: A beginner-friendly quickstart showing how to use a C++ REST API with MongoDB and Keploy record & replay. | ||||
| tags: | ||||
| - cpp | ||||
| - mongodb | ||||
| - quickstart | ||||
| - samples | ||||
| - examples | ||||
| - tutorial | ||||
| - mongo-c-driver | ||||
| keyword: | ||||
| - C++ | ||||
| - MongoDB | ||||
| - cpp-httplib | ||||
| - Keploy | ||||
| - API Test generator | ||||
| --- | ||||
|
|
||||
| import Link from '@docusaurus/Link' | ||||
| import InstallReminder from '@site/src/components/InstallReminder'; | ||||
| import SectionDivider from '@site/src/components/SectionDivider'; | ||||
|
||||
| import SectionDivider from '@site/src/components/SectionDivider'; |
Copilot
AI
Feb 1, 2026
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.
The frontmatter section has incorrect markdown fencing. Line 2 contains markdown which starts a code block, and line 54 contains markdown which appears to be attempting to close it. This causes the entire frontmatter and content between lines 1-53 to be duplicated starting at line 54. The file should start with just --- (line 1) and the frontmatter should end with --- (which should be at line 22), without any markdown code block fencing.
Copilot
AI
Feb 1, 2026
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.
The file ends with ```` which is incorrect. This appears to be an attempt to close a markdown code block that was incorrectly opened at line 2. Remove this line as it should not be present in a properly formatted markdown file.
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.
The Link component is imported but never used in the document. Remove this unused import to keep the code clean.