
केंद्रीकृत डोमेन पोर्टफोलियो प्रबंधक जो स्वचालित रूप से WHOIS, DNS, SSL डेटा, समाप्ति अलर्ट, अपटाइम निगरानी, और दृश्य विश्लेषण प्रदान करता है। Docker के साथ स्व-होस्ट करने योग्य।
सभी आपके डोमेन नामों के लिए केंद्रीय हब
🌐domain-locker.com
Domain Locker का उद्देश्य आपको आपके डोमेन नाम पोर्टफोलियो का पूर्ण दृश्य एक ही केंद्रीय स्थान पर प्रदान करना है।
आपके द्वारा जोड़े गए प्रत्येक डोमेन के लिए, हम उसका विश्लेषण करते हैं और उससे संबंधित सभी डेटा प्राप्त करते हैं। फिर हम आपके डोमेन की लगातार निगरानी करते हैं, और जब कोई महत्वपूर्ण परिवर्तन होता है या उसकी समाप्ति निकट होती है, तो आपको (आपकी प्राथमिकताओं के अनुसार) सूचित करते हैं। इस प्रकार आपको विस्तृत डोमेन विश्लेषण, सुरक्षा जानकारी, परिवर्तन इतिहास, हाल का प्रदर्शन, मूल्यांकन डेटा और बहुत कुछ मिलेगा।
Domain Locker के साथ, आप अपने डोमेन पर कभी भी नज़र नहीं खोएंगे, किसी समाप्ति को मिस नहीं करेंगे, या यह नहीं भूलेंगे कि प्रत्येक डोमेन किस रजिस्ट्रार और प्रदाता का उपयोग करता है।
(5fps के लिए क्षमा करें, मैं फ़ाइल का आकार छोटा रखना चाहता था!)

लाइव डेमो आज़माएं demo.domain-locker.com पर
(उपयोगकर्ता नाम: [email protected] पासवर्ड: domainlocker)
Domain Locker का उपयोग करने के लिए, आपके पास दो विकल्प हैं:
हमारी वेबसाइट पर जाएं, और Google, GitHub या अपने ईमेल से साइन अप करें।
स्टार्टर प्लान मुफ्त है, और किसी सेटअप की आवश्यकता नहीं है। बस साइन इन करें, अपने डोमेन जोड़ें, और उन्हें ट्रैक करना शुरू करें।
curl -fsSL https://install.domain-locker.com | bash
`docker-compose.yml`](https://github.com/Lissy93/domain-locker/blob/main/docker-compose.yml) का उपयोग करें।
<details>
<summary>विवरण</summary>
- **पूर्वापेक्षाएँ**:
- Domain Locker को कंटेनर में चलाने के लिए डिज़ाइन किया गया है, इसलिए आपको अपने होस्ट सिस्टम पर Docker [स्थापित](https://docs.docker.com/engine/install/) होना चाहिए।
- **कंटेनर**:
- हमारे पास [`lissy93/domain-locker`](https://hub.docker.com/r/lissy93/domain-locker) पर एक Docker इमेज प्रकाशित है।
- आपको एक Postgres डेटाबेस की भी आवश्यकता होगी, जैसे [`postgres:15-alpine`](https://hub.docker.com/_/postgres?tab=tags&name=15-alpine) कंटेनर।
- **पर्यावरण**:
- कंटेनर शुरू करते समय, कंटेनर में `3000` को अपने होस्ट `PORT` से बाँधें (डिफ़ॉल्ट `3000` है)।
- फिर Postgres वेरिएबल निर्दिष्ट करें: `DL_PG_HOST`, `DL_PG_PORT`, `DL_PG_USER`, `DL_PG_PASSWORD` और `DL_PG_NAME`।
- **वॉल्यूम**:
- अपने Postgres डेटा को स्थायी रखने के लिए `/var/lib/postgresql/data` पर एक वॉल्यूम माउंट करें।
- **क्रॉन**
- `/api/domain-updater` - डोमेन डेटा को अद्यतित रखने और सूचनाएँ ट्रिगर करने के लिए प्रतिदिन निष्पादित करें।
- `/api/domain-monitor` - वेबसाइट अपटाइम और प्रदर्शन की निगरानी के लिए हर 15 मिनट में निष्पादित करें।
- `/api/cleanup-monitor-data` - पुराने मॉनिटरिंग डेटा को समेकित करने के लिए साप्ताहिक निष्पादित करें।
- **उदाहरण**:
- सब कुछ एक साथ रखने के लिए, आप हमारी [`docker-compose.yml`](https://github.com/Lissy93/domain-locker/blob/main/docker-compose.yml) फ़ाइल का उपयोग कर सकते हैं।
- अधिक विवरण के लिए, [स्व-होस्टिंग दस्तावेज़](https://domain-locker.com/about/self-hosting) देखें।
<details>
<summary>डॉकर आरेख</summary>```mermaid
flowchart TB
subgraph Volume Mounts
direction TB
Vpostgresdata([📦 postgres_data]) x-. /var/lib/postgresql/data .-x postgres[(🐘 PostgreSQL DB)]
Vdbschemasql{{📄 ./db/schema.sql}} -. Mounted on Init .-> postgres
end
subgraph Network
direction TB
domainlockernetwork[/🌐 domain_locker_network/]
end
postgres -.- domainlockernetwork
subgraph app[⚙️ App Container]
SSR[HTTP Server]
CLIENT[Client App]
API[API Endpoints]
SSR --> CLIENT
SSR --> API
end
app -.- domainlockernetwork
git clone [email protected]:Lissy93/domain-locker.git # Get the code cd domain-locker # Navigate into directory npm install --legacy-peer-deps # Install dependencies cp .env.example .env # Set environmental variables npm run dev # Start the dev server
- **पूर्वापेक्षाएँ**
- आपको अपने सिस्टम पर Git और Node स्थापित करने की आवश्यकता होगी।
- **कॉन्फ़िगरेशन**
- उदाहरण `.env.sample` फ़ाइल में हमारे Supabase dev इंस्टेंस के लिए सार्वजनिक क्रेडेंशियल्स शामिल हैं
- वैकल्पिक db का उपयोग करने के लिए, Postgres के साथ कॉन्फ़िगर करने हेतु नीचे [Database](#database) अनुभाग देखें
- **परिनियोजन**
- आप `npm run build` के साथ कोड बना सकते हैं, फिर `npm start` के साथ चला सकते हैं
- या, Docker के साथ कंटेनर बनाने के लिए `docker build -t domain-locker .`
- उत्पादन में dev Supabase इंस्टेंस का उपयोग न करें, क्योंकि इसे बार-बार साफ़ किया जाता है
---
## ऐप आर्किटेक्चर
#### टेक स्टैक
डोमेन लॉकर एक ऐप, डेटाबेस और कुछ API एंडपॉइंट्स से बना है।
- **ऐप** Angular में बनाया गया है, जिसमें Analog+Nitro का उपयोग PrimeNg घटकों के साथ और Tailwind का उपयोग स्टाइलिंग के लिए किया गया है
- **सर्वर** Typescript फ़ंक्शंस के साथ Deno एंडपॉइंट्स की एक श्रृंखला है
- **डेटाबेस** Postgres या Supabase हो सकता है
जबकि स्व-होस्टेड इंस्टेंस को स्टैंड-अलोन तैनात करने का इरादा है, प्रबंधित संस्करण हालांकि कुछ अतिरिक्त तृतीय-पक्ष सेवाओं पर निर्भर करता है, जिन्हें आप नीचे देख सकते हैं, [जिनके दस्तावेज़ यहाँ हैं](https://domain-locker.com/about/developing/third-party-docs).
<details>
<summary>क्यों</summary>
Angular क्यों? भविष्य के मेरे लिए एक बीमार मजाक के रूप में, जिसे फिर इसका रखरखाव करना होगा।
</details>
<p align="center">
<img width="800" src="https://assets.kitploit.com/production/public/readmes/264/1449d16cb6a07bd766d3b86a8de608aaa4075270a0a634cd6f6af1f1a1d70c49.png" />
<br>
<span>आप उपयोग की गई प्रौद्योगिकियों और सेवाओं के दस्तावेज़ <a href="https://domain-locker.com/about/developing/third-party-docs">यहाँ</a> देख सकते हैं</span>
</p>
#### आर्किटेक्चर
आर्किटेक्चर काफी सरल है।
हमारे पास एक ऐप (एक फ्रंटएंड और API एंडपॉइंट्स से युक्त) है, जहाँ उपयोगकर्ता डेटाबेस (एडेप्टर के माध्यम से) से पढ़ और लिख सकता है। फिर एक क्रॉन सेवा समय-समय पर API एंडपॉइंट्स को कॉल करेगी ताकि डोमेन डेटा को अद्यतित रखा जा सके, परिवर्तनों को ट्रैक किया जा सके, स्वास्थ्य की निगरानी की जा सके, और कुछ परिवर्तनों (उपयोगकर्ता की प्राथमिकता के अनुसार) या आगामी समाप्ति से पहले सूचनाएँ ट्रिगर की जा सकें।```mermaid
graph TD;
subgraph User Interactions
User[👤 User] -->|Enter domain| WebApp[🌐 Frontend];
WebApp -->|Send API request| API[⚙️ Nitro API];
API -->|Auth Check| Auth[🔐 Auth Service];
API -->|Store domain info| Database[🗄️ PostgreSQL / Supabase];
end
subgraph Automated Cron Jobs
CronService[⏳ Cron Service] -->|Trigger Updates| EdgeFunctions[⚡ Edge Functions];
EdgeFunctions -->|Fetch WHOIS, DNS, SSL| ExternalAPIs[🌎 Analysis Services];
EdgeFunctions -->|Store Data| Database;
CronService -->|Monitor Uptime| WebsiteMonitor[📡 Uptime Monitor];
WebsiteMonitor -->|Store Metrics| Database;
CronService -->|Check Expirations| ExpiryChecker[📆 Expiration Check];
ExpiryChecker -->|Update Status| Database;
CronService -->|Send Notifications| NotificationService[🔔 Notification System];
NotificationService -->|Email| Resend[📧 Resend];
NotificationService -->|SMS| Twilio[📱 Twilio];
end
Database -->|Serve Data| WebApp;
आपके सभी डोमेन और संबंधित जानकारी को संग्रहीत करने के लिए एक डेटाबेस आवश्यक है। Domain Locker डेटा संग्रहीत करने के लिए Supabase और मानक Postgres दोनों का समर्थन करता है। उपयोग किया जाने वाला डेटाबेस इस पर निर्भर करेगा कि कौन से env vars सेट किए गए हैं।
Supabase: Supabase के सेल्फ-होस्टिंग डॉक्स का पालन करें, फिर स्कीमा को आयात करने और auth, edge functions, ईमेल आदि को कॉन्फ़िगर करने के लिए dl-sb-iac का उपयोग करें।
SUPABASE_URL और SUPABASE_ANON_KEY पर्यावरण चरPostgres: एक Postgres इंस्टेंस तैनात करें, फिर schema.sql लागू करें
psql -h $DL_PG_HOST -U $DL_PG_USER -d $DL_PG_NAME -f ./db/schema.sqlsetup-postgres.sh का उपयोग करें (सुपरयूज़र एक्सेस आवश्यक है)DL_PG_HOST, DL_PG_PORT, DL_PG_USER, DL_PG_PASSWORD, `DL_PG_NAME````mermaid
classDiagram
class users {
uuid id
text email
timestamp created_at
timestamp updated_at
}class domains { uuid id uuid user_id text domain_name date expiry_date text notes timestamp created_at timestamp updated_at uuid registrar_id timestamp registration_date timestamp updated_date }
class registrars { uuid id text name text url uuid user_id }
class tags { uuid id text name text color text description text icon uuid user_id }
class domain_tags { uuid domain_id uuid tag_id }
class notifications { uuid id uuid user_id uuid domain_id text change_type text message boolean sent boolean read timestamp created_at }
class billing { uuid id uuid user_id text current_plan timestamp next_payment_due text billing_method timestamp created_at timestamp updated_at jsonb meta }
class dns_records { uuid id uuid domain_id text record_type text record_value timestamp created_at timestamp updated_at }
class domain_costings { uuid id uuid domain_id numeric purchase_price numeric current_value numeric renewal_cost boolean auto_renew timestamp created_at timestamp updated_at }
class domain_hosts { uuid domain_id uuid host_id }
class domain_links { uuid id uuid domain_id text link_name text link_url timestamp created_at timestamp updated_at text link_description }
class domain_statuses { uuid id uuid domain_id text status_code timestamp created_at }
class domain_updates { uuid id uuid domain_id uuid user_id text change text change_type text old_value text new_value timestamp date }
class uptime { uuid id uuid domain_id timestamp checked_at boolean is_up integer response_code numeric response_time_ms numeric dns_lookup_time_ms numeric ssl_handshake_time_ms timestamp created_at }
class ssl_certificates { uuid id uuid domain_id text issuer text issuer_country text subject date valid_from date valid_to text fingerprint integer key_size text signature_algorithm timestamp created_at timestamp updated_at }
class whois_info { uuid id uuid domain_id text country text state text name text organization text street text city text postal_code }
class user_info { uuid id uuid user_id jsonb notification_channels timestamp created_at timestamp updated_at text current_plan }
class hosts { uuid id inet ip numeric lat numeric lon text isp text org text as_number text city text region text country uuid user_id }
class ip_addresses { uuid id uuid domain_id inet ip_address boolean is_ipv6 timestamp created_at timestamp updated_at }
class notification_preferences { uuid id uuid domain_id text notification_type boolean is_enabled timestamp created_at timestamp updated_at }
class sub_domains { uuid id uuid domain_id text name timestamp created_at timestamp updated_at jsonb sd_info }
users --> domains : user_id registrars --> domains : registrar_id users --> registrars : user_id users --> tags : user_id domains --> domain_tags : domain_id tags --> domain_tags : tag_id users --> notifications : user_id domains --> notifications : domain_id users --> billing : user_id domains --> dns_records : domain_id domains --> domain_costings : domain_id domains --> domain_hosts : domain_id hosts --> domain_hosts : host_id domains --> domain_links : domain_id domains --> domain_statuses : domain_id domains --> domain_updates : domain_id users --> domain_updates : user_id domains --> uptime : domain_id domains --> ssl_certificates : domain_id domains --> whois_info : domain_id users --> user_info : user_id users --> hosts : user_id domains --> ip_addresses : domain_id domains --> notification_preferences : domain_id domains --> sub_domains : domain_id
<p align="center"><sub>आप स्कीमा डाउनलोड कर सकते हैं <a href="https://github.com/Lissy93/domain-locker/blob/main/db/schema.sql"<code>db/schema.sql</code></a> से</sub></p>
---
### योगदान
किसी भी प्रकार के योगदान का हमेशा स्वागत है, और बहुत सराहना की जाती है! 💗
यदि आप Git में नए हैं, तो योगदान देने का सामान्य तरीका इस प्रकार है:
- रिपॉजिटरी को फोर्क करें, [यहां क्लिक करके](https://github.com/lissy93/domain-locker/fork)
- अपना फोर्क क्लोन करें (`git clone [email protected]:[आपका_उपयोगकर्ता_नाम]/domain-locker.git` के साथ)
- ऊपर दिए गए [प्रोजेक्ट सेटअप](#project-setup) का पालन करें, ताकि प्रोजेक्ट डेवलपमेंट मोड में चलाया जा सके।
- अपनी शानदार नई सुविधा या अद्भुत बग फिक्स लागू करें...
- एक ब्रांच चेकआउट करें, `git checkout -b feature-branch` के साथ, फिर अपने बदलावों को `git add` करें और conventional commits का उपयोग करके `git commit` करें, इससे पहले कि आप अपनी ब्रांच पर `git push` करें।
- GitHub पर वापस जाएं, और फिर आप हमारी `main` ब्रांच के विरुद्ध एक PR खोल सकते हैं। यह शामिल करना न भूलें कि आपने क्या बदला, क्यों, और किसी भी संबंधित मुद्दों से लिंक करें।
- हम तब समीक्षा, प्रतिक्रिया और मर्ज करेंगे, और एक बार रिलीज़ होने पर आपके बदलाव प्रोडक्शन में लाइव होंगे, साथ ही नवीनतम Docker इमेज में उपलब्ध होंगे।
<details>
<summary>Git ब्रांच उदाहरण</summary>```mermaid
%%{init: {"theme": "default"}}%%
gitGraph
commit id: "Initial commit"
branch trunk
commit id: "Feature A"
commit id: "Feature B"
commit id: "v1.0.0 (Tag)"
branch demo
checkout main
commit id: "Feature C"
commit id: "v1.1.0 (Tag)"
checkout demo
merge main id: "Merge main into demo"
checkout main
commit id: "Feature D"
commit id: "v1.2.0 (Tag)"
checkout demo
merge main id: "Merge main into demo (v1.2.0)"
checkout main
branch feature-branch-1
commit id: "Contributor Feature 1"
checkout main
merge feature-branch-1 id: "Merge contributor feature 1"
commit id: "v1.3.0 (Tag)"
checkout demo
merge main id: "Merge main into demo (v1.3.0)"
checkout main
branch feature-branch-2
commit id: "Contributor Feature 2"
checkout main
merge feature-branch-2 id: "Merge contributor feature 2"
commit id: "v1.4.0 (Tag)"
checkout demo
merge main id: "Merge main into demo (v1.4.0)"
Lissy93/Domain-Locker MIT के अंतर्गत लाइसेंस प्राप्त है © Alicia Sykes 2025.
जानकारी के लिए देखें TLDR Legal > MIT
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub-license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included install copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANT ABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</details>
<!-- License + Copyright -->
<p align="center">
<i>© <a href="https://aliciasykes.com">Alicia Sykes</a> 2025</i><br>
<i><a href="https://gist.github.com/Lissy93/143d2ee01ccc5c052a17">MIT</a> के तहत लाइसेंस प्राप्त</i><br>
<a href="https://github.com/lissy93"><img src="https://assets.kitploit.com/production/public/readmes/264/2dd6b50bb46f34f56ce0166642faf6ef16cd4102cd8a3805f1be707c9f7c0a3d.png" /></a><br>
<sup>आने के लिए धन्यवाद :)</sup>
</p>
<!-- डायनासोर अद्भुत हैं -->
<!--
. - ~ ~ ~ ~ - .
.. _ .-~ ~-.
//| \ `..~ `.
|| | } } / \ \
(\ \\ \~^..' | } \
\`.-~ o / } | / \
(__ | / | / `.
`- - ~ ~ -._| /_ - ~ ~ ~ ^| /- _ `.
| / | / ~-. ~- _
|_____| |_____| ~ - . _ _~_-_
-->