-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Added README.md to implement a project #228
base: master
Are you sure you want to change the base?
Conversation
WalkthroughThe changes in this pull request include minor modifications across three files: Changes
Poem
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 (
|
@coderabbitai full review |
✅ Actions performedFull review triggered. |
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.
Actionable comments posted: 6
🧹 Outside diff range comments (9)
Jenkinsfile (5)
Line range hint
13-17
: Enhance Docker build stage with best practicesThe Docker build stage could be improved for better security and efficiency:
- Add build arguments for better configurability
- Implement proper image tagging strategy instead of using
latest
- Add multi-stage builds if applicable to reduce final image size
stage("build and test"){ steps{ - sh "docker build -t node-app-test-new ." + script { + def BUILD_NUMBER = env.BUILD_NUMBER + sh """ + docker build \ + --build-arg NODE_ENV=production \ + --no-cache \ + -t node-app-test-new:${BUILD_NUMBER} \ + -t node-app-test-new:latest . + docker image prune -f + """ + } echo 'code build bhi ho gaya' } }
Line range hint
18-22
: Implement proper image scanningThe current image scanning stage is just a placeholder. Consider implementing actual security scanning using tools like Trivy or Snyk.
stage("scan image"){ steps{ - echo 'image scanning ho gayi' + script { + def BUILD_NUMBER = env.BUILD_NUMBER + sh """ + docker run --rm -v /var/run/docker.sock:/var/run/docker.sock \ + aquasec/trivy image node-app-test-new:${BUILD_NUMBER} \ + --exit-code 1 \ + --severity HIGH,CRITICAL + """ + } } }
Line range hint
23-33
: Improve Docker Hub authentication securityWhile using withCredentials is good, the current implementation exposes credentials through process environment. Consider using docker login --password-stdin.
stage("push"){ steps{ withCredentials([usernamePassword(credentialsId:"dockerHub",passwordVariable:"dockerHubPass",usernameVariable:"dockerHubUser")]){ - sh "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPass}" + script { + def BUILD_NUMBER = env.BUILD_NUMBER + sh """ + echo "${dockerHubPass}" | docker login -u "${dockerHubUser}" --password-stdin + docker tag node-app-test-new:${BUILD_NUMBER} ${dockerHubUser}/node-app-test-new:${BUILD_NUMBER} + docker push ${dockerHubUser}/node-app-test-new:${BUILD_NUMBER} + docker tag node-app-test-new:${BUILD_NUMBER} ${dockerHubUser}/node-app-test-new:latest + docker push ${dockerHubUser}/node-app-test-new:latest + """ + } - sh "docker tag node-app-test-new:latest ${env.dockerHubUser}/node-app-test-new:latest" - sh "docker push ${env.dockerHubUser}/node-app-test-new:latest" echo 'image push ho gaya' } } }
Line range hint
34-39
: Enhance deployment stage with health checksThe current deployment lacks proper health checks and rollback mechanisms.
stage("deploy"){ steps{ - sh "docker-compose down && docker-compose up -d" + script { + sh """ + docker-compose down + docker-compose up -d + # Wait for application to be ready + timeout 60s bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:8000/health)" != "200" ]]; do sleep 5; done' + """ + } echo 'deployment ho gayi' } }
Line range hint
1-40
: Add error handling and cleanup stagesThe pipeline lacks proper error handling, post-action cleanup, and professional logging.
Consider adding:
- Post stages for cleanup
- Error handling for each stage
- Professional logging messages
- Timeout configurations
Example structure:
pipeline { agent { label "dev-server" } options { timeout(time: 1, unit: 'HOURS') disableConcurrentBuilds() } environment { APP_NAME = 'node-todo-app' DOCKER_IMAGE = 'node-app-test-new' } stages { // ... existing stages with error handling ... } post { always { cleanWs() sh 'docker system prune -f' } success { echo "Pipeline completed successfully" } failure { echo "Pipeline failed" } } }views/todo.ejs (4)
Line range hint
78-89
: Add CSRF protection to the form submissionThe form submission endpoint
/todo/add/
lacks CSRF protection, which could make it vulnerable to cross-site request forgery attacks.Consider implementing CSRF protection using a token:
<form action="/todo/add/" method="post"> + <input type="hidden" name="_csrf" value="<%= csrfToken %>"> <p> <label for="newtodo">What should I do?</label>
Line range hint
71-77
: Fix potential XSS vulnerability in todo itemsUsing
<%- todo %>
for unescaped output could lead to XSS attacks if todo items contain malicious HTML/JavaScript.Replace with escaped output:
- <%- todo %> + <%= todo %>
Line range hint
70-70
: Add ARIA labels to improve accessibilityThe edit and delete buttons lack proper accessibility labels, making it difficult for screen readers to convey their purpose.
Add ARIA labels to the action buttons:
- <a href="/todo/delete/<%= index %>" class="delete-btn">✘</a> - <a href="/todo/<%= index %>" class="edit-btn">✎</a> + <a href="/todo/delete/<%= index %>" class="delete-btn" aria-label="Delete todo item">✘</a> + <a href="/todo/<%= index %>" class="edit-btn" aria-label="Edit todo item">✎</a>
Line range hint
69-69
: Consider making the heading configurableThe heading "Hello Junoon Batch 8 (Jenkins)" appears to be hardcoded, which might need to be updated for different batches or contexts.
Consider making it configurable through template variables:
- <h1>Hello Junoon Batch 8 (Jenkins), Write your plan on Learning Jenkins</h1> + <h1><%= pageTitle %></h1>
📜 Review details
Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
⛔ Files ignored due to path filters (10)
README-images/image1.png
is excluded by!**/*.png
README-images/image10.png
is excluded by!**/*.png
README-images/image2.png
is excluded by!**/*.png
README-images/image3.png
is excluded by!**/*.png
README-images/image4.png
is excluded by!**/*.png
README-images/image5.png
is excluded by!**/*.png
README-images/image6.png
is excluded by!**/*.png
README-images/image7.png
is excluded by!**/*.png
README-images/image8.png
is excluded by!**/*.png
README-images/image9.png
is excluded by!**/*.png
📒 Files selected for processing (3)
Jenkinsfile
(1 hunks)README.md
(1 hunks)views/todo.ejs
(1 hunks)
🧰 Additional context used
🪛 LanguageTool
README.md
[grammar] ~1-~1: It appears that a hyphen is missing in the noun “To-do” (= task) or did you mean the verb “to do”?
Context: ... Guide to Implementing CI/CD in Node.js Todo Applications This documentation provi...
(TO_DO_HYPHEN)
[uncategorized] ~11-~11: Possible missing article found.
Context: ...oject-Todo-node-app) By following below steps, you can successfully complete th...
(AI_HYDRA_LEO_MISSING_THE)
[uncategorized] ~153-~153: The official spelling of this programming framework is “Node.js”.
Context: ... Enter a name for your project (e.g., NodeJS To-Do App). * Select **Pipeline ...
(NODE_JS)
[uncategorized] ~169-~169: Possible missing comma found.
Context: ... Build Trigger for GitHub Webhook** To ensure Jenkins automatically pulls new code wh...
(AI_HYDRA_LEO_MISSING_COMMA)
[uncategorized] ~299-~299: The verb “is” doesn’t seem to fit in this context, “are” is probably more formally correct.
Context: ...(README-images/image4.png) 3 ) Changes is Successfully applied to Project using G...
(AI_HYDRA_LEO_CPT_IS_ARE)
🪛 Markdownlint
README.md
23-23: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
25-25: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
27-27: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
29-29: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
31-31: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
239-239: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
241-241: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
9-9: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
20-20: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
22-22: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
24-24: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
26-26: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
28-28: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
30-30: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
32-32: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
121-121: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
123-123: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
130-130: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
137-137: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
152-152: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
154-154: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
156-156: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
163-163: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
165-165: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
172-172: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
211-211: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
218-218: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
225-225: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
236-236: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
238-238: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
240-240: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
242-242: Expected: 0 or 2; Actual: 8
Trailing spaces
(MD009, no-trailing-spaces)
244-244: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
251-251: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
266-266: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
268-268: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
270-270: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
272-272: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
306-306: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
308-308: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
310-310: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
312-312: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
3-3: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
10-10: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
33-33: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
124-124: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
131-131: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
138-138: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
157-157: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
166-166: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
173-173: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
212-212: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
219-219: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
226-226: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
245-245: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
252-252: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
273-273: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
284-284: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
313-313: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
322-322: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
285-285: null
Multiple top-level headings in the same document
(MD025, single-title, single-h1)
285-285: Element: mark
Inline HTML
(MD033, no-inline-html)
325-325: null
Files should end with a single newline character
(MD047, single-trailing-newline)
🔇 Additional comments (2)
views/todo.ejs (2)
111-111
: LGTM: Proper EOF newline
The addition of a newline at the end of the file follows good coding practices and prevents potential issues with certain tools and version control systems.
Line range hint 1-111
: Verify security measures across the application
Let's check for other potential security vulnerabilities in the codebase.
@@ -1,19 +1,325 @@ | |||
# node-todo-cicd | |||
# Step-by-Step Guide to Implementing CI/CD in Node.js Todo Applications |
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.
🧹 Nitpick (assertive)
Maintain consistent terminology and improve document structure
- Use consistent hyphenation: "To-Do" instead of "Todo"
- Use a single top-level heading (remove the duplicate heading at line 285)
Also applies to: 153-153, 285-285
🧰 Tools
🪛 LanguageTool
[grammar] ~1-~1: It appears that a hyphen is missing in the noun “To-do” (= task) or did you mean the verb “to do”?
Context: ... Guide to Implementing CI/CD in Node.js Todo Applications This documentation provi...
(TO_DO_HYPHEN)
|
||
* Navigate to the **EC2 Dashboard** and click on **Launch Instance**. | ||
|
||
* Choose **Ubuntu 24.04 LTS** as the operating system. |
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.
Update Ubuntu version reference
The specified Ubuntu version 24.04 LTS doesn't exist yet. Consider using Ubuntu 22.04 LTS which is the current LTS version.
🧰 Tools
🪛 Markdownlint
25-25: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
|
||
* Select the **t2.micro** instance type (free-tier eligible). | ||
|
||
* Configure your **security groups** to allow **SSH (port 22)** access and also prepare ports **8080** (for Jenkins) and **8000** (for the web app). |
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.
🛠️ Refactor suggestion
Consolidate security group configuration steps
Security group configurations are scattered throughout the document. Consider consolidating all required port configurations (22, 8080, 8000) in the initial EC2 setup section for better security practice.
Also applies to: 120-120, 250-250
🧰 Tools
🪛 Markdownlint
29-29: Expected: 2; Actual: 4
Unordered list indentation
(MD007, ul-indent)
* Add Jenkins to the **docker** group: | ||
|
||
|
||
```bash | ||
sudo usermod -aG docker jenkins | ||
``` |
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.
Add security considerations for Docker group membership
Adding Jenkins user to the Docker group effectively grants root access. Consider:
- Adding a security warning about this implication
- Suggesting alternative approaches like running Jenkins in a container
- Implementing proper access controls
🧰 Tools
🪛 Markdownlint
218-218: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
219-219: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
![Changes in GitHub Repo](README-images/image1.png) | ||
|
||
2 ) Checking the Contineous Integration of code on Jenkins : | ||
|
||
![Contineous Integration](README-images/image2.png) | ||
|
||
![Contineous Integration](README-images/image3.png) | ||
|
||
![Contineous Integration](README-images/image4.png) | ||
|
||
3 ) Changes is Successfully applied to Project using Github push : | ||
|
||
![Changes applied](README-images/image5.png) | ||
|
||
4 ) Checking the Output : | ||
|
||
* Previous output: | ||
|
||
![Previous output](README-images/image10.png) | ||
|
||
* After updating application code : | ||
|
||
![After updating](README-images/image6.png) | ||
|
||
|
||
5 ) Testing the Deployed Project by checking its Features : | ||
|
||
![Testing](README-images/image7.png) | ||
|
||
![Testing](README-images/image8.png) | ||
|
||
![Testing](README-images/image9.png) |
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.
🧹 Nitpick (assertive)
Improve image documentation and accessibility
- Add meaningful alt text descriptions for each image
- Consider adding captions explaining what each image demonstrates
- Ensure images are stored in a consistent location and follow naming conventions
🧰 Tools
🪛 LanguageTool
[uncategorized] ~299-~299: The verb “is” doesn’t seem to fit in this context, “are” is probably more formally correct.
Context: ...(README-images/image4.png) 3 ) Changes is Successfully applied to Project using G...
(AI_HYDRA_LEO_CPT_IS_ARE)
🪛 Markdownlint
306-306: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
308-308: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
310-310: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
312-312: Expected: 0 or 2; Actual: 4
Trailing spaces
(MD009, no-trailing-spaces)
313-313: Expected: 1; Actual: 2
Multiple consecutive blank lines
(MD012, no-multiple-blanks)
```plaintext | ||
pipeline { | ||
agent any | ||
|
||
stages { | ||
|
||
stage("code"){ | ||
steps{ | ||
git url: "https://github.com/Amitabh-DevOps/Jenkins-CI-CD-Project-Todo-node-app.git", branch: "master" | ||
echo 'Bhaiya code clone hogaya' | ||
} | ||
} | ||
stage("build and test"){ | ||
steps{ | ||
sh "docker build -t node-app ." | ||
echo 'Code build done' | ||
} | ||
} | ||
stage("deploy"){ | ||
steps{ | ||
sh "docker-compose down && docker-compose up -d --build" | ||
echo 'Deployment also done' | ||
} | ||
} | ||
} | ||
} | ||
``` |
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.
🛠️ Refactor suggestion
Enhance pipeline robustness and maintainability
The pipeline script could be improved:
- Use pipeline parameters instead of hardcoding the repository URL
- Add proper error handling for each stage
- Use meaningful status messages
pipeline {
agent any
+ parameters {
+ string(name: 'REPO_URL', defaultValue: 'https://github.com/Amitabh-DevOps/Jenkins-CI-CD-Project-Todo-node-app.git', description: 'Git repository URL')
+ }
stages {
stage("code"){
steps{
- git url: "https://github.com/Amitabh-DevOps/Jenkins-CI-CD-Project-Todo-node-app.git", branch: "master"
- echo 'Bhaiya code clone hogaya'
+ git url: params.REPO_URL, branch: "master"
+ echo 'Successfully cloned repository'
}
}
stage("build and test"){
steps{
- sh "docker build -t node-app ."
- echo 'Code build done'
+ script {
+ try {
+ sh "docker build -t node-app ."
+ echo 'Successfully built Docker image'
+ } catch (Exception e) {
+ error "Docker build failed: ${e.message}"
+ }
+ }
}
}
stage("deploy"){
steps{
- sh "docker-compose down && docker-compose up -d --build"
- echo 'Deployment also done'
+ script {
+ try {
+ sh "docker-compose down && docker-compose up -d --build"
+ echo 'Successfully deployed application'
+ } catch (Exception e) {
+ error "Deployment failed: ${e.message}"
+ }
+ }
}
}
}
}
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
```plaintext | |
pipeline { | |
agent any | |
stages { | |
stage("code"){ | |
steps{ | |
git url: "https://github.com/Amitabh-DevOps/Jenkins-CI-CD-Project-Todo-node-app.git", branch: "master" | |
echo 'Bhaiya code clone hogaya' | |
} | |
} | |
stage("build and test"){ | |
steps{ | |
sh "docker build -t node-app ." | |
echo 'Code build done' | |
} | |
} | |
stage("deploy"){ | |
steps{ | |
sh "docker-compose down && docker-compose up -d --build" | |
echo 'Deployment also done' | |
} | |
} | |
} | |
} | |
``` | |
pipeline { | |
agent any | |
parameters { | |
string(name: 'REPO_URL', defaultValue: 'https://github.com/Amitabh-DevOps/Jenkins-CI-CD-Project-Todo-node-app.git', description: 'Git repository URL') | |
} | |
stages { | |
stage("code"){ | |
steps{ | |
git url: params.REPO_URL, branch: "master" | |
echo 'Successfully cloned repository' | |
} | |
} | |
stage("build and test"){ | |
steps{ | |
script { | |
try { | |
sh "docker build -t node-app ." | |
echo 'Successfully built Docker image' | |
} catch (Exception e) { | |
error "Docker build failed: ${e.message}" | |
} | |
} | |
} | |
} | |
stage("deploy"){ | |
steps{ | |
script { | |
try { | |
sh "docker-compose down && docker-compose up -d --build" | |
echo 'Successfully deployed application' | |
} catch (Exception e) { | |
error "Deployment failed: ${e.message}" | |
} | |
} | |
} | |
} | |
} | |
} |
Here i have added a README.md which will guide beginners to implement this project
Summary by CodeRabbit
New Features
Bug Fixes
Documentation