diff --git a/README.md b/README.md index d9cbe4f..5640b43 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,9 @@ CheckCle is an Open Source solution for seamless, real-time monitoring of full-s User: admin@example.com | Passwd: Admin123456 ## ๐ŸŒŸ Core Features +### ๐Ÿ“ Roadmap : [DEVELOPMENT_ROADMAP](docs/DEVELOPMENT_ROADMAP.md) -### Uptime Services & Infrastructure Server Monitoring +### Uptime Services & Infrastructure Server Monitoring - Monitor HTTP, DNS, and Ping protocols - Monitor TCP-based, API services (e.g., FTP, SMTP, HTTP) - Track detail uptime, response times, and performance issues @@ -63,26 +64,9 @@ CheckCle is an Open Source solution for seamless, real-time monitoring of full-s * โœ… x86_64 PCs, laptops, servers (amd64) * โœ… Modern Raspberry Pi 3/4/5 with (64-bit OS), Apple Silicon Macs (arm64) -### Install CheckCle using one of the options below. +### Install CheckCle using one of the following methods: - -1. CheckCle One-Click Installation - Just copy and run on terminal -```bash -curl -fsSL https://checkcle.io/install.sh | bash - -``` -2. Install with docker run. Just copy ready docker run command below -```bash -docker run -d \ - --name checkcle \ - --restart unless-stopped \ - -p 8090:8090 \ - -v /opt/pb_data:/mnt/pb_data \ - --ulimit nofile=4096:8192 \ - operacle/checkcle:latest - -``` -3. Install with Docker compose Configuration. +1. Install with Docker Compose Configuration (Recommended) ```bash version: '3.9' @@ -102,6 +86,18 @@ services: hard: 8192 ``` +2. Install with docker run. Just copy ready docker run command below +```bash +docker run -d \ + --name checkcle \ + --restart unless-stopped \ + -p 8090:8090 \ + -v /opt/pb_data:/mnt/pb_data \ + --ulimit nofile=4096:8192 \ + operacle/checkcle:latest + +``` + 3. Admin Web Management Default URL: http://0.0.0.0:8090 @@ -118,28 +114,6 @@ services: ![Schedule Maintenance](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-schedule-maintenance.png) -## ๐Ÿ“ Development Roadmap - -- โœ… Health check & uptime monitoring (HTTP) -- โœ… Dashboard UI with live stats -- โœ… Auth with Multi-users system (admin) -- โœ… Notifications (Telegram) -- โœ… Docker containerization -- โœ… CheckCle Website -- โœ… CheckCle Demo Server -- โœ… SSL & Domain Monitoring -- โœ… Schedule Maintenance -- โœ… Incident Management -- โœ… Infrastructure Server Monitoring -- โœ… Operational Status / Public Status Pages -- โœ… Uptime monitoring (HTTP, TCP, PING, DNS) Full functionality -- โœ… Distributed Regional Monitoring Agent -- โœ… System Setting Panel and Mail Settings -- โœ… User Permission Roles -- [ ] Notifications (Email/Slack/Discord/Signal) -- โœ… Data Retention & Automate Strink (Muti Options to Shrink Data & Database ) -- โœ… Open-source release with full documentation - ## ๐ŸŒŸ CheckCle for Communities? - **Built with Passion**: Created by an open-source enthusiast for the community - **Free & Open Source**: Completely free to use with no hidden costs @@ -147,6 +121,30 @@ services: --- +## Sponsors +๐Ÿ™ We're incredibly thankful to our sponsors. Your contributions enable us to maintain infrastructure (hosting, domains), run tests, and continue developing valuable features. + +### ๐Ÿฅˆ Silver Uptime Ally + + + + + +### ๐Ÿงก Ping Supporter + + + + + +--- + +## ๐Ÿ‘ฅ Contributors +Thank you for contributing and continuously making CheckCle better, you're awesome ๐Ÿซถ + +[![](https://contrib.rocks/image?repo=operacle/checkcle)](https://github.com/operacle/checkcle/graphs/contributors) + +--- + ## ๐Ÿค Ways to Contribute Here are some ways you can help improve CheckCle: @@ -155,25 +153,20 @@ Here are some ways you can help improve CheckCle: - ๐ŸŒŸ **Suggest Features** โ€“ Have an idea? Start a [Discussion](https://github.com/operacle/checkcle/discussions) or open a Feature Request issue. - ๐Ÿ›  **Submit Pull Requests** โ€“ Improve the code, fix bugs, add features, or enhance the docs. - ๐Ÿ“ **Improve Documentation** โ€“ Even a typo fix helps! -- ๐ŸŒ **Spread the Word** โ€“ Star โญ the repo, share it on socials, and invite others to contribute! +- ๐ŸŒ **Spread the Word** โ€“ Star โญ the [CheckCle](https://github.com/operacle/checkcle.git) repo, share it on socials, and invite others to contribute! --- ## ๐ŸŒ Stay Connected - Website: [checkcle.io](https://checkcle.io) - Documentation: [docs.checkcle.io](https://docs.checkcle.io) -- GitHub Repository: โญ [CheckCle](https://github.com/operacle/checkcle.git) -- Reddit Community: [reddit](https://www.reddit.com/r/checkcle) -- Discord: Join our community [@discord](https://discord.gg/xs9gbubGwX) -- X: [@tlengoss](https://x.com/tlengoss) +- Chat on Discord: Join our community [@discord](https://discord.gg/xs9gbubGwX) +- Follow us on X: [@checkcle_oss](https://x.com/checkcle_oss) ## ๐Ÿ“œ License CheckCle is released under the MIT License. --- -## ๐Ÿ‘ฅ Contributors -Thank you for contributing and continuously making CheckCle better, you're awesome ๐Ÿซถ -[![](https://contrib.rocks/image?repo=operacle/checkcle)](https://github.com/operacle/checkcle/graphs/contributors) diff --git a/application/index.html b/application/index.html index 200a3e1..bf65603 100644 --- a/application/index.html +++ b/application/index.html @@ -4,7 +4,7 @@ - CheckCle is an open-source monitoring stack + CheckCle @@ -14,7 +14,7 @@ - + diff --git a/application/src/components/dashboard/Header.tsx b/application/src/components/dashboard/Header.tsx index 143789a..c937d2e 100644 --- a/application/src/components/dashboard/Header.tsx +++ b/application/src/components/dashboard/Header.tsx @@ -162,7 +162,7 @@ export const Header = ({ variant="outline" size="icon" className="rounded-full w-8 h-8 border-border" - onClick={() => window.open("https://x.com/tlengoss", "_blank")} + onClick={() => window.open("https://x.com/checkcle_oss", "_blank")} > X (Twitter) diff --git a/application/src/components/settings/about-system/AboutSystem.tsx b/application/src/components/settings/about-system/AboutSystem.tsx index b06e7d8..677d2dd 100644 --- a/application/src/components/settings/about-system/AboutSystem.tsx +++ b/application/src/components/settings/about-system/AboutSystem.tsx @@ -95,7 +95,7 @@ export const AboutSystem: React.FC = () => { {t('viewDocumentation')} - diff --git a/application/src/components/ssl-domain/SSLCertificatesTable.tsx b/application/src/components/ssl-domain/SSLCertificatesTable.tsx index dd28818..a1e5008 100644 --- a/application/src/components/ssl-domain/SSLCertificatesTable.tsx +++ b/application/src/components/ssl-domain/SSLCertificatesTable.tsx @@ -33,11 +33,13 @@ import { AddSSLCertificateForm } from "./AddSSLCertificateForm"; import { EditSSLCertificateForm } from "./EditSSLCertificateForm"; import { SSLCertificateActions } from "./SSLCertificateActions"; import { SSLCertificateDetailDialog } from "./SSLCertificateDetailDialog"; +import { SSLPagination } from "./SSLPagination"; import { fetchSSLCertificates, addSSLCertificate, deleteSSLCertificate } from "@/services/sslCertificateService"; import { pb } from "@/lib/pocketbase"; import { SSLCertificate } from "@/types/ssl.types"; import { useLanguage } from "@/contexts/LanguageContext"; import { useTheme } from "@/contexts/ThemeContext"; +import { useSSLPagination } from "@/hooks/useSSLPagination"; import { toast } from "sonner"; export const SSLCertificatesTable = () => { @@ -56,6 +58,16 @@ export const SSLCertificatesTable = () => { queryFn: fetchSSLCertificates, }); + const { + paginatedCertificates, + currentPage, + totalPages, + pageSize, + totalItems, + handlePageChange, + handlePageSizeChange, + } = useSSLPagination({ certificates }); + if (isLoading) return
Loading...
; if (isError) return
Error loading certificates
; @@ -67,7 +79,6 @@ export const SSLCertificatesTable = () => { setShowAddDialog(false); toast.success(t('certificateAdded')); } catch (error) { - // console.error("Error adding certificate:", error); toast.error(t('failedToAddCertificate')); } finally { setIsSubmitting(false); @@ -89,7 +100,6 @@ export const SSLCertificatesTable = () => { setSelectedCertificate(null); toast.success(t('certificateUpdated')); } catch (error) { - // console.error("Error updating certificate:", error); toast.error(t('failedToUpdateCertificate')); } finally { setIsSubmitting(false); @@ -107,7 +117,6 @@ export const SSLCertificatesTable = () => { setSelectedCertificate(null); toast.success(t('certificateDeleted')); } catch (error) { - // console.error("Error deleting certificate:", error); toast.error(t('failedToDeleteCertificate')); } finally { setIsSubmitting(false); @@ -136,57 +145,68 @@ export const SSLCertificatesTable = () => { {t('noCertificatesFound')} ) : ( -
- - - - {t('domain')} - {t('status')} - {t('issuer')} - {t('validUntil')} - {t('daysLeft')} - Check Interval - Actions - - - - {certificates.map((certificate) => ( - openViewDialog(certificate)} - > - - {certificate.domain} - - - - - {certificate.issuer_o || certificate.issuer_cn || 'Unknown'} - - {certificate.valid_till ? new Date(certificate.valid_till).toLocaleDateString() : 'N/A'} - - - - {certificate.days_left} {t('days')} - - - - {certificate.check_interval || 1} {t('days')} - - e.stopPropagation()}> - - + <> +
+
+ + + {t('domain')} + {t('status')} + {t('issuer')} + {t('validUntil')} + {t('daysLeft')} + Check Interval + Actions - ))} - -
-
+ + + {paginatedCertificates.map((certificate) => ( + openViewDialog(certificate)} + > + + {certificate.domain} + + + + + {certificate.issuer_o || certificate.issuer_cn || 'Unknown'} + + {certificate.valid_till ? new Date(certificate.valid_till).toLocaleDateString() : 'N/A'} + + + + {certificate.days_left} {t('days')} + + + + {certificate.check_interval || 1} {t('days')} + + e.stopPropagation()}> + + + + ))} + + + + + + )} {/* View Certificate Dialog */} @@ -256,4 +276,4 @@ export const SSLCertificatesTable = () => { ); -}; +}; \ No newline at end of file diff --git a/application/src/components/ssl-domain/SSLDomainContent.tsx b/application/src/components/ssl-domain/SSLDomainContent.tsx index bb38980..6fe1b60 100644 --- a/application/src/components/ssl-domain/SSLDomainContent.tsx +++ b/application/src/components/ssl-domain/SSLDomainContent.tsx @@ -30,12 +30,12 @@ export const SSLDomainContent = () => { queryKey: ['ssl-certificates'], queryFn: async () => { try { - console.log("Fetching SSL certificates from SSLDomainContent..."); + // console.log("Fetching SSL certificates from SSLDomainContent..."); const result = await fetchSSLCertificates(); - console.log("Received SSL certificates:", result); + // console.log("Received SSL certificates:", result); return result; } catch (error) { - console.error("Error fetching certificates:", error); + // console.error("Error fetching certificates:", error); toast.error(t('failedToLoadCertificates')); throw error; } @@ -61,7 +61,7 @@ export const SSLDomainContent = () => { // Edit certificate mutation - Updated to ensure thresholds are properly updated const editMutation = useMutation({ mutationFn: async (certificate: SSLCertificate) => { - console.log("Updating certificate with data:", certificate); + // console.log("Updating certificate with data:", certificate); // Create the update data object const updateData = { @@ -70,12 +70,12 @@ export const SSLDomainContent = () => { notification_channel: certificate.notification_channel, }; - console.log("Update data to be sent:", updateData); + // console.log("Update data to be sent:", updateData); // Update certificate in the database using PocketBase directly const updated = await pb.collection('ssl_certificates').update(certificate.id, updateData); - console.log("PocketBase update response:", updated); + // console.log("PocketBase update response:", updated); // After updating the settings, refresh the certificate to ensure it's up to date // This will also check if notification needs to be sent based on updated thresholds @@ -90,7 +90,7 @@ export const SSLDomainContent = () => { toast.success(t('sslCertificateUpdated')); }, onError: (error) => { - console.error("Error updating SSL certificate:", error); + // console.error("Error updating SSL certificate:", error); toast.error(error instanceof Error ? error.message : t('failedToUpdateCertificate')); } }); @@ -103,7 +103,7 @@ export const SSLDomainContent = () => { toast.success(t('sslCertificateDeleted')); }, onError: (error) => { - console.error("Error deleting SSL certificate:", error); + // console.error("Error deleting SSL certificate:", error); toast.error(error instanceof Error ? error.message : t('failedToDeleteCertificate')); } }); @@ -117,7 +117,7 @@ export const SSLDomainContent = () => { // Removed individual success toast notification }, onError: (error) => { - console.error("Error refreshing SSL certificate:", error); + // console.error("Error refreshing SSL certificate:", error); setRefreshingId(null); // Still refresh the data to show any partial information that was saved @@ -142,7 +142,7 @@ export const SSLDomainContent = () => { } }, onError: (error) => { - console.error("Error refreshing all certificates:", error); + // console.error("Error refreshing all certificates:", error); toast.error(t('failedToCheckCertificate')); setIsRefreshingAll(false); diff --git a/application/src/components/ssl-domain/SSLPagination.tsx b/application/src/components/ssl-domain/SSLPagination.tsx new file mode 100644 index 0000000..2ee6721 --- /dev/null +++ b/application/src/components/ssl-domain/SSLPagination.tsx @@ -0,0 +1,131 @@ + +import { + Pagination, + PaginationContent, + PaginationItem, + PaginationLink, + PaginationNext, + PaginationPrevious +} from "@/components/ui/pagination"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue +} from "@/components/ui/select"; +import { SSLPageSize } from "@/hooks/useSSLPagination"; +import { useLanguage } from "@/contexts/LanguageContext"; + +interface SSLPaginationProps { + currentPage: number; + totalPages: number; + pageSize: SSLPageSize; + totalItems: number; + onPageChange: (page: number) => void; + onPageSizeChange: (size: SSLPageSize) => void; +} + +export function SSLPagination({ + currentPage, + totalPages, + pageSize, + totalItems, + onPageChange, + onPageSizeChange, +}: SSLPaginationProps) { + const { t } = useLanguage(); + + // Generate page numbers to display + const getPageNumbers = () => { + const pages = []; + const maxVisiblePages = 5; + const halfVisible = Math.floor(maxVisiblePages / 2); + + let startPage = Math.max(1, currentPage - halfVisible); + let endPage = Math.min(totalPages, startPage + maxVisiblePages - 1); + + // Adjust start page if we don't have enough pages at the end + if (endPage - startPage + 1 < maxVisiblePages) { + startPage = Math.max(1, endPage - maxVisiblePages + 1); + } + + for (let i = startPage; i <= endPage; i++) { + pages.push(i); + } + + return pages; + }; + + const startItem = Math.min((currentPage - 1) * pageSize + 1, totalItems); + const endItem = Math.min(currentPage * pageSize, totalItems); + + return ( +
+
+ + {t("rowsPerPage") || "Rows per page"}: + + + + {totalItems > 0 + ? `${startItem}-${endItem} of ${totalItems} ${t("certificates") || "certificates"}` + : `0 ${t("certificates") || "certificates"}` + } + +
+ + {totalPages > 1 && ( + + + + onPageChange(Math.max(1, currentPage - 1))} + className={ + currentPage === 1 + ? "pointer-events-none opacity-50" + : "cursor-pointer" + } + /> + + + {getPageNumbers().map((page) => ( + + onPageChange(page)} + className="cursor-pointer" + > + {page} + + + ))} + + + onPageChange(Math.min(totalPages, currentPage + 1))} + className={ + currentPage === totalPages + ? "pointer-events-none opacity-50" + : "cursor-pointer" + } + /> + + + + )} +
+ ); +} \ No newline at end of file diff --git a/application/src/hooks/useSSLPagination.ts b/application/src/hooks/useSSLPagination.ts new file mode 100644 index 0000000..25bc9e0 --- /dev/null +++ b/application/src/hooks/useSSLPagination.ts @@ -0,0 +1,52 @@ + +import { useState, useMemo } from 'react'; +import { SSLCertificate } from '@/types/ssl.types'; + +export type SSLPageSize = 10 | 30 | 50; + +interface UseSSLPaginationProps { + certificates: SSLCertificate[]; + initialPageSize?: SSLPageSize; +} + +export const useSSLPagination = ({ + certificates, + initialPageSize = 10 +}: UseSSLPaginationProps) => { + const [currentPage, setCurrentPage] = useState(1); + const [pageSize, setPageSize] = useState(initialPageSize); + + const { paginatedCertificates, totalPages } = useMemo(() => { + const totalItems = certificates.length; + const pages = Math.ceil(totalItems / pageSize); + const startIndex = (currentPage - 1) * pageSize; + const endIndex = startIndex + pageSize; + + return { + paginatedCertificates: certificates.slice(startIndex, endIndex), + totalPages: Math.max(1, pages) + }; + }, [certificates, currentPage, pageSize]); + + // Reset to first page when page size changes or certificates change + const handlePageSizeChange = (newPageSize: SSLPageSize) => { + setPageSize(newPageSize); + setCurrentPage(1); + }; + + // Reset to first page if current page exceeds total pages + const handlePageChange = (page: number) => { + const validPage = Math.min(Math.max(1, page), totalPages); + setCurrentPage(validPage); + }; + + return { + paginatedCertificates, + currentPage, + totalPages, + pageSize, + totalItems: certificates.length, + handlePageChange, + handlePageSizeChange, + }; +}; \ No newline at end of file diff --git a/docs/DEVELOPMENT_ROADMAP.md b/docs/DEVELOPMENT_ROADMAP.md new file mode 100644 index 0000000..5afac95 --- /dev/null +++ b/docs/DEVELOPMENT_ROADMAP.md @@ -0,0 +1,119 @@ +# ๐Ÿ“ Development Roadmap + +Welcome to the official development roadmap for this project. This document outlines our plans, priorities, and direction for upcoming releases. It is intended to keep contributors, users, and stakeholders informed about the projectโ€™s evolution. + +> ๐Ÿ”„ **Note**: This roadmap is subject to change based on feedback, urgency, or shifts in priorities. + +--- + +## โœ… Goals and Vision + +Our mission is to deliver a robust, scalable, and user-friendly solution for "uptime monitoring and server infrastructure insights". + +**Core objectives:** +- Provide high performance with low resource usage +- Ensure scalability and modularity +- Focus on excellent user experience (UX) +- Maintain open-source transparency and community-driven features + +--- + +## ๐Ÿงฉ Key Main Features + +#### Delivery Status: +- โœ… Setup authentication and user management +- โœ… Core monitoring dashboard +- โœ… Agent communication with backend +- โœ… Docker containerization +- โœ… CheckCle Website +- โœ… CheckCle Demo Server +- โœ… SSL & Domain Monitoring +- โœ… Schedule Maintenance +- โœ… Incident Management +- โœ… Infrastructure Server Monitoring +- โœ… Operational Status / Public Status Pages +- โœ… Uptime Monitoring (HTTP, TCP, PING, DNS) +- โœ… Distributed Regional Monitoring Agent +- โœ… System Setting Panel and Mail Settings +- โœ… Data Retention & Automate Shrink +- โœ… Open-source release with documentation + +--- +## ๐Ÿšฆ Roadmap Stages + +The roadmap is divided into the following stages: + +| Stage | Description | +|-------|-------------| +| ๐ŸŽฏ Planned | Approved features or improvements that are on the schedule | +| ๐Ÿ”ง In Progress | Actively being developed | +| โœ… Completed | Fully implemented and tested | +| โณ Backlog | On hold or pending prioritization | +| ๐Ÿงช Experimental | Testing new concepts or prototypes | + +--- + +## ๐Ÿ—‚ Milestone Overview + +### ๐Ÿ“ฆ v1.0.0-1.3.0 โ€“ Initial Release _(Target: Q2 2025)_ +**Status:** โœ… Completed +**Goal:** MVP feature completion, API stability, and core use-case readiness. + +#### Key Deliverables: https://github.com/operacle/checkcle/releases + +--- + +### ๐Ÿš€ v1.4 - 1.5 โ€“ Feature Enhancements _(Target: Q3 2025)_ +**Status:** ๐Ÿ”ง In Progress +#### Tentative Features: +- [ ] โœ… Server and Service Table row clickable to detail page. +- [ ] โœ… Implement pagination for the SSL dashboard table +- [ ] ๐Ÿ”ง Server Agent (RPM, Docker container, and general binary package) +- [ ] ๐Ÿ”ง Notification System (Webhook, Telegram, Discord, Slack, Email, Google Chat) +- [ ] ๐Ÿ”ง Improve Uptime Service and Server connection update based on status and notification. +- [ ] ๐Ÿ”ง Improve SSL perform the initial check automatically after creation +- [ ] ๐Ÿ”ง Rate limiting and abuse protection +- [ ] ๐ŸŽฏ Improve the Operational status page +- [ ] ๐ŸŽฏ Improve the Schedule and Incident for automation +- [ ] ๐ŸŽฏ Server Windows Agent +- [ ] ๐ŸŽฏ More Uptime Service Type (HTTP keyword, HTTP json) +- [ ] ๐ŸŽฏ Server support with Multiple Network Interfaces +- [ ] ๐ŸŽฏ Server support with cpu temperature +- [ ] ๐ŸŽฏ Server upport with multiple disks +- [ ] ๐ŸŽฏ Add 2FA support +- [ ] ๐ŸŽฏ Rate limiting and abuse protection + +--- + +## ๐Ÿง  Ideas / Community Wishlist + +These are community-suggested or experimental features under review: + +- [ ] Grouping uptime services +- [ ] OAuth2 integration +- [ ] Mobile PWA support +- [ ] Cloud-native Helm/Kubernetes deployment + +Youโ€™re welcome to propose features via [GitHub Discussions](https://github.com/operacle/checkcle/discussions) or open an issue with the `feature-request` template. + +--- + +## ๐Ÿ“Œ How to Contribute + +We encourage contributions from the community! +To get involved: + +- Review [CONTRIBUTING.md](../CONTRIBUTING.md) | https://docs.checkcle.io +- Check out the [Open Issues](https://github.com/operacle/checkcle/issues) +- Join us in shaping the roadmap via [Discussions](https://github.com/operacle/checkcle/discussions) + +--- + +## ๐Ÿ“… Last Updated +_This roadmap was last updated on **July 26, 2025**._ + +--- + +With โค๏ธ from the CheckCle +[Website](https://checkcle.io) | [GitHub](https://github.com/operacle/checkcle) + diff --git a/docs/README_ja.md b/docs/README_ja.md index bcf51f0..67774cb 100644 --- a/docs/README_ja.md +++ b/docs/README_ja.md @@ -162,7 +162,7 @@ CheckCleใฎๆ”นๅ–„ใซใ”ๅ”ๅŠ›ใ„ใŸใ ใ‘ใ‚‹ๆ–นๆณ•ใ‚’ใ”็ดนไป‹ใ—ใพใ™๏ผš - GitHubใƒชใƒใ‚ธใƒˆใƒช: โญ [CheckCle](https://github.com/operacle/checkcle.git) - ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใƒใƒฃใƒณใƒใƒซ: ใƒ‡ใ‚ฃใ‚นใ‚ซใƒƒใ‚ทใƒงใƒณใ‚„issuesใงๅ‚ๅŠ ใ—ใฆใใ ใ•ใ„๏ผ - Discord: ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใซๅ‚ๅŠ  [@discord](https://discord.gg/xs9gbubGwX) -- X: [@tlengoss](https://x.com/tlengoss) +- X: [@checkcle_oss](https://x.com/checkcle_oss) ## ๐Ÿ“œ ใƒฉใ‚คใ‚ปใƒณใ‚น diff --git a/docs/README_km.md b/docs/README_km.md index f605d66..43e10c2 100644 --- a/docs/README_km.md +++ b/docs/README_km.md @@ -163,7 +163,7 @@ services: - แžƒแŸ’แž›แžถแŸ†แž„แž•แŸ’แž‘แžปแž€แž€แžผแžŠ: โญ [CheckCle](https://github.com/operacle/checkcle.git) - แž‘แŸ†แž“แžถแž€แŸ‹แž‘แŸ†แž“แž„แž€แŸ’แžšแžปแž˜: Engage via discussions and issues! - แž”แžŽแŸ’แžแžถแž‰แžŸแž„แŸ’แž‚แž˜: Join our community [@discord](https://discord.gg/xs9gbubGwX) -- X: [@tlengoss](https://x.com/tlengoss) +- X: [@checkcle_oss](https://x.com/checkcle_oss) ## ๐Ÿ“œ License