mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-06-08 02:14:53 +00:00
Merge branch 'main' into patch-1
This commit is contained in:
@@ -1,16 +1,21 @@
|
||||
<!-- Please complete this template so we can review your pull request faster. -->
|
||||
<!--
|
||||
!!! YOU MUST FILL OUT THIS TEMPLATE FOR YOUR PULL REQUEST TO BE ACCEPTED !!!
|
||||
-->
|
||||
|
||||
## Requirements
|
||||
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above.
|
||||
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain **MUST** pass **ALL** the indicated requirements below.
|
||||
|
||||
Please note that we reserve the rights not to accept any domain at our own discretion.
|
||||
<!-- Change each checkbox to [x] to mark it as checked. -->
|
||||
- [ ] I have **read** and **understood** the [Terms of Service](https://is-a.dev/terms). <!-- Your domain MUST follow the TOS to be approved. -->
|
||||
- [ ] My domain is **not** for commercial use.
|
||||
- [ ] My file is in the `domains` folder and is in the JSON format.
|
||||
- [ ] My file's name is all lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
|
||||
- [ ] The website is **reachable**. <!-- Not needed if the domain is for emails only. -->
|
||||
- [ ] I have **completed** my website. <!-- Not needed if the domain is for emails only. -->
|
||||
- [ ] My website is related to **software development**.
|
||||
- [ ] I have provided contact information in the `owner` key. <!-- Provide your email in the `email` field or another platform (e.g., X, Discord) for contact. -->
|
||||
- [ ] I have **followed** the [documentation](https://docs.is-a.dev).
|
||||
- [ ] I understand my domain may be removed if I violate the [Terms of Service](https://is-a.dev/terms).
|
||||
|
||||
- [ ] The file is in the `domains` folder and is in the JSON format.
|
||||
- [ ] The file's name is all lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
|
||||
- [ ] You have completed your website. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] The website is reachable. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] The CNAME record doesn't contain `https://` or `/`. <!-- This is not required if you are not using a CNAME record. -->
|
||||
- [ ] There is sufficient information at the `owner` field. <!-- You need to have your email presented at `email` field. If you don't want to provide your email for any reason, you can specify another social platform (e.g. Twitter) so we can contact you. -->
|
||||
|
||||
## Website Link/Preview
|
||||
<!-- Please provide a link or preview of your website below. If you can't make the website visible, then an image of the website is also fine! -->
|
||||
## Website Preview
|
||||
<!-- Provide a link or preview of your website below. If you can't make the website visible, then a screenshot of the website also works. -->
|
||||
|
||||
@@ -21,10 +21,15 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
npm install
|
||||
npx ava tests/*.test.js
|
||||
|
||||
- name: Generate creds.json
|
||||
run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json
|
||||
|
||||
- name: Publish
|
||||
- name: Push DNS records
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
env:
|
||||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
|
||||
@@ -19,14 +19,13 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
dns:
|
||||
name: DNS
|
||||
dnscontrol:
|
||||
name: DNSControl
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
- uses: is-a-dev/dnscontrol-action@main
|
||||
with:
|
||||
args: check
|
||||
|
||||
@@ -38,5 +37,4 @@ jobs:
|
||||
|
||||
- run: npm install
|
||||
|
||||
- name: Run tests
|
||||
run: npx ava tests/*.test.js
|
||||
- run: npx ava tests/*.test.js
|
||||
|
||||
+8
-45
@@ -29,18 +29,14 @@ for (var subdomain in domains) {
|
||||
// Handle A records
|
||||
if (domainData.record.A) {
|
||||
for (var a in domainData.record.A) {
|
||||
records.push(
|
||||
A(subdomainName, IP(domainData.record.A[a]), proxyState)
|
||||
);
|
||||
records.push(A(subdomainName, IP(domainData.record.A[a]), proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle AAAA records
|
||||
if (domainData.record.AAAA) {
|
||||
for (var aaaa in domainData.record.AAAA) {
|
||||
records.push(
|
||||
AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState)
|
||||
);
|
||||
records.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,29 +44,14 @@ for (var subdomain in domains) {
|
||||
if (domainData.record.CAA) {
|
||||
for (var caa in domainData.record.CAA) {
|
||||
var caaRecord = domainData.record.CAA[caa];
|
||||
records.push(
|
||||
CAA(
|
||||
subdomainName,
|
||||
caaRecord.flags,
|
||||
caaRecord.tag,
|
||||
caaRecord.value
|
||||
)
|
||||
);
|
||||
records.push(CAA(subdomainName, caaRecord.tag, caaRecord.value));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle CNAME records
|
||||
if (domainData.record.CNAME) {
|
||||
// Allow CNAME record on root
|
||||
if (subdomainName === "@") {
|
||||
records.push(
|
||||
ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState)
|
||||
);
|
||||
} else {
|
||||
records.push(
|
||||
CNAME(subdomainName, domainData.record.CNAME + ".", proxyState)
|
||||
);
|
||||
}
|
||||
// Use ALIAS instead of CNAME to support CNAME flattening on the root domain
|
||||
records.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState));
|
||||
}
|
||||
|
||||
// Handle DS records
|
||||
@@ -78,13 +59,7 @@ for (var subdomain in domains) {
|
||||
for (var ds in domainData.record.DS) {
|
||||
var dsRecord = domainData.record.DS[ds];
|
||||
records.push(
|
||||
DS(
|
||||
subdomainName,
|
||||
dsRecord.key_tag,
|
||||
dsRecord.algorithm,
|
||||
dsRecord.digest_type,
|
||||
dsRecord.digest
|
||||
)
|
||||
DS(subdomainName, dsRecord.key_tag, dsRecord.algorithm, dsRecord.digest_type, dsRecord.digest)
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -92,13 +67,7 @@ for (var subdomain in domains) {
|
||||
// Handle MX records
|
||||
if (domainData.record.MX) {
|
||||
for (var mx in domainData.record.MX) {
|
||||
records.push(
|
||||
MX(
|
||||
subdomainName,
|
||||
10 + parseInt(mx),
|
||||
domainData.record.MX[mx] + "."
|
||||
)
|
||||
);
|
||||
records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + "."));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,13 +83,7 @@ for (var subdomain in domains) {
|
||||
for (var srv in domainData.record.SRV) {
|
||||
var srvRecord = domainData.record.SRV[srv];
|
||||
records.push(
|
||||
SRV(
|
||||
subdomainName,
|
||||
srvRecord.priority,
|
||||
srvRecord.weight,
|
||||
srvRecord.port,
|
||||
srvRecord.target + "."
|
||||
)
|
||||
SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsFatlum",
|
||||
"email": "fatlum@lumi.is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "nilsraccoon",
|
||||
"discord": "1129507464589627512"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PentSec",
|
||||
"email": "jeffreysfu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
"discord": "1166013268008120340"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5"
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "JustStudio.",
|
||||
"owner": {
|
||||
"username": "JustDeveloper1",
|
||||
"email": "support@juststudio.is-a.dev",
|
||||
"discord": "1117482901353812088"
|
||||
},
|
||||
"record": {
|
||||
"TXT": [
|
||||
"d878bca923"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "devhammed",
|
||||
"email": "hey@hammed.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "7672b068b3140a9fbaaf9bfe0ab136"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "manugeni",
|
||||
"email": "rendaniman@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "c43b4f0460a8d8b9c05affa2da77ef"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NarasimaPandiyan",
|
||||
"email": "cs42059@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "0cd2fb39489f7652da9a4942df4a75"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PentSec",
|
||||
"email": "jeffreysfu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "c1f0e5d392a06b64a632b42f794b1a"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
"discord": "1166013268008120340"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "05dc6febabf44f8decab35d01609ee"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ramanandkrgupta",
|
||||
"email": "ramanand@myyahoo.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "07cd3e879dce98546f212f494f50da"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "heyjumanji"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "thisisdhika",
|
||||
"email": "dhikaardana87@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=dhika.is-a.dev,3b4f3c565c41289d2f66"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "harshshah-codes",
|
||||
"email": "harshshah.dev@gmail.com",
|
||||
"discord": "889700837520199761"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Jorge-lopz",
|
||||
"email": "jlpenero2005@gmail.com",
|
||||
"discord": "713831494761840753"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=jorge-lopz.is-a.dev,5bfcd4cedc07714c2319"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "heyjumanji"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"]
|
||||
}
|
||||
"owner": {
|
||||
"username": "heyjumanji",
|
||||
"email": "madhuchutiya.unhinge50@silomails.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mirzazaman",
|
||||
"email": "mirzazaman828@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=mzaman.is-a.dev,23ba156f3878cfc860f7"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "syedtahseen",
|
||||
"email": "itxtahseen@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "naman-0804",
|
||||
"email": "namansrivastava1608@gmail.com",
|
||||
"discord": "naman_1101"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=namansrivastava.is-a.dev,7b128b70cd9aae28bf1c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tuannguyen2002",
|
||||
"email": "",
|
||||
"discord": "minhtuan9039"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=nguyenminhtuan.is-a.dev,2910b5006f1f208b05e6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "13yadav",
|
||||
"email": "yadavranjit521@gmail.com",
|
||||
"discord": "529604454908035083"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "samishoukat12",
|
||||
"email": "samishoukat12@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=samishoukat.is-a.dev,f7c3cb972c650104d507"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "wisauw",
|
||||
"email": "riveross92@gmail.com",
|
||||
"discord": "313046852415258625"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=sebastianriveros.is-a.dev,be3bca98d22aab14d046"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "UsmanBaig001",
|
||||
"email": "usmanbaig1572@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=usmanbaig.is-a.dev,c2f96e70ebd3aef5458b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "willymateo",
|
||||
"email": "matheoowilly@gmail.com",
|
||||
"discord": "willycocolon"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "alireza mohebbi threejs project - aasoft.ir",
|
||||
"owner": {
|
||||
"username": "aasoftir",
|
||||
"email": "aasoftmohebbi@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://glitch-text-threejs.vercel.app/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abdiopp",
|
||||
"email": "ginnieabdullah007@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abdi-portfolio.web.app"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "this is for my personal website made.",
|
||||
"owner": {
|
||||
"username": "ahyalfan",
|
||||
"email": "alfandi0857@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://ahyalfan.my.id"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ammar's personal website",
|
||||
"repo": "https://github.com/Ammaryasser1998/ammaryasser1998.github.io",
|
||||
"owner": {
|
||||
"username": "Ammaryasser1998",
|
||||
"email": "amyss1910@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ammaryasser1998.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Agung's Portofolio Website",
|
||||
"repo": "https://github.com/asbp/asbp.github.io",
|
||||
"owner": {
|
||||
"username": "asbp",
|
||||
"email": "guungofficial@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "asbp.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
{
|
||||
"description": "Personal website me , Aswin M V",
|
||||
"repo": "https://github.com/AswinArsha/mypersonalwebsite.git",
|
||||
"owner": {
|
||||
"username": "AswinArsha",
|
||||
"email": "aswinmv13@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "tubular-kangaroo-60ad83.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Boopup",
|
||||
"discord": "972502840247484527",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XpL4EHQDM2NhhOcMnxdbK1MOEgJqrE4REv8yt5tx7uiBoPWpOkHaiyA6q1qpPpan5pdxz3QT03Okj3I-sgW5Jqo_J65lLkd_NhTIcC-BpBiqic8LrSSPXHCdPG6iB5vdWOOiAnyesygsUF5460q2X-lxuaGQ7c5vqNJxC3XVv2aDal8cYXHY5Fn1SaXNNYpdkjWDByszsy1negAdRCdZqUDnEbiyAVp5jcETjC7Rs7qJSYI4noYuatL6HYZs-17WTbhVKNA9dfmGVcPzrNB4jl_jtgXHP0Bf_xg5OSiQ4MiSGcCObMBirxSlhid-56HuzyJUDaZgiuSSPq-VdinNNw.QlY7KCeNk9GIOA3tdSkyrw.2iQLx2zPSnj0DRMey79pgn1wV1G08vhZPKpHEb4YGTcEa8bOT7lQ3hiiwBj6kbxMM54L2xz4kOBcX5fjI3o4uhay96GtE76G4cuPVBBGx8g.v44-C_GmlY0plYvqCasd_w"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": ["191.101.148.239"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "boudjoo",
|
||||
"email": "abdouboudjo1@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "boudjoo.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ItzYoVishal",
|
||||
"email": "rockstarelitecoc@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["4.157.244.201"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "razelleclaren",
|
||||
"email": "gracela.claren1@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "thisisdhika",
|
||||
"email": "dhikaardana87@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "thisisdhika.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "morcu",
|
||||
"email": "david.morcuende.c@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "davidmorcuende.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "donangel",
|
||||
"email": "public@doncho.net"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://doncho.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "egor-xyz",
|
||||
"discord": "egor.xyz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "egor.xyz"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ALEXXHUMILDE",
|
||||
"email": "alexxcrack3@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "enlaces-alexxhumilde.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "fabianf4",
|
||||
"email": "fabianfa.munoz@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fabianf4.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Professional website",
|
||||
"repo": "https://github.com/Thefederico/federico",
|
||||
"owner": {
|
||||
"username": "Thefederico",
|
||||
"email": "xooxes@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["75.2.60.5"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "camposdev",
|
||||
"email": "felipecamposdev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "felipecampos.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "frapujgal",
|
||||
"email": "fpujol1989@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "frapujgal.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Joe50097",
|
||||
"email": "zcell9500@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fungaming-discord-server.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Gui2258",
|
||||
"email": "guidotele@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://gui2dev.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "The portfolio site of Gülşah Düzgün",
|
||||
"repo": "https://github.com/GulsahDuzgun/Portfolio",
|
||||
"owner": {
|
||||
"username": "GulsahDuzgun",
|
||||
"email": "duzgun.gulsah27@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "gulsah.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Link to my portfolio site.",
|
||||
"repo": "https://github.com/devhammed/devhammed.github.io",
|
||||
"owner": {
|
||||
"username": "devhammed",
|
||||
"email": "hey@hammed.dev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "devhammed.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "harshshah-codes",
|
||||
"email": "harshshah.dev@gmail.com",
|
||||
"discord": "889700837520199761"
|
||||
},
|
||||
"record": {
|
||||
"A": ["76.76.21.21"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/Hixtrionix/is-a-dev-register",
|
||||
"owner": {
|
||||
"username": "Hixtrionix",
|
||||
"email": "aflores@cop.es"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dev-webpage.web.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal portfolio",
|
||||
"repo": "https://github.com/jaennova/portfolio",
|
||||
"owner": {
|
||||
"username": "jaennova",
|
||||
"email": "jaendevp@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["75.2.60.5"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal Portfolio Website",
|
||||
"repo": "https://github.com/jasondevgm/jasondevgm.github.io.git",
|
||||
"owner": {
|
||||
"username": "jasondevgm",
|
||||
"email": "jasondevgm@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jasondevgm.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jbmbhs",
|
||||
"email": "juan@belmontemarin.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"URL": "https://www.linkedin.com/in/juan-belmonte-821175112/"
|
||||
}
|
||||
}
|
||||
|
||||
+14
-2
@@ -1,9 +1,21 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PentSec",
|
||||
"email": "jeffreysfu@gmail.com"
|
||||
"email": "pentsec.2@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "pentsec.github.io"
|
||||
}
|
||||
},
|
||||
"redirect_config": {
|
||||
"custom_paths": {
|
||||
"/gh": "https://github.com/PentSec",
|
||||
"/dc": "https://discord.com/users/284896471210393600",
|
||||
"/x": "https://x.com/__J3ff_",
|
||||
"/bsky": "https://sitoz.bsky.social",
|
||||
"/tw": "https://twitch.tv/Sitoz1",
|
||||
"/kick": "https://kick.com/Sitoz1",
|
||||
"/ig": "https://www.instagram.com/jeffreysfuenmayor_"
|
||||
}
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Jorge's Web",
|
||||
"owner": {
|
||||
"username": "Jorge-lopz",
|
||||
"email": "jlpenero2005@gmail.com",
|
||||
"discord": "713831494761840753"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jorge-lopz.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "JMVS",
|
||||
"email": "jose.veramutka@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "veramutka.com.ar"
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
"email": "madhuchutiya.unhinge650@silomails.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["172.66.47.44", "172.66.44.212"],
|
||||
"A": ["76.76.21.21"],
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Karel95",
|
||||
"email": "karelh2207@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "karldev95.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "keshav-writes-code",
|
||||
"email": "dhimankeshav201@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "keshav-writes-code.github.io"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"repo": "https://github.com/RadioactivePotato/krunch-is-a-dev",
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
"discord": "1166013268008120340"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "krunch.pages.dev"
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "luihh",
|
||||
"email": "luihh@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://luihh.is-a.dev"
|
||||
},
|
||||
"redirect_config": {
|
||||
"custom_paths": {
|
||||
"/github": "https://github.com/luihh",
|
||||
"/twitch": "https://www.twitch.tv/luihh23",
|
||||
"/youtube": "https://www.youtube.com/@Luihh",
|
||||
"/discord": "https://discord.com/users/481268875586174986",
|
||||
"/steam": "https://steamcommunity.com/id/Luihh23",
|
||||
"/paypal": "https://www.paypal.com/paypalme/luihhdev"
|
||||
},
|
||||
"redirect_paths": true
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cname.short.io"
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,6 @@
|
||||
"email": "luis073094@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://portafolioluisandre.azurewebsites.net",
|
||||
"A": ["20.206.176.7"]
|
||||
"URL": "https://portafolioluisandre.azurewebsites.net"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "luisdanieltrejo",
|
||||
"email": "luisdanieltrejo@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "luisdanieltrejo.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Personal portfolio website",
|
||||
"repo": "https://github.com/GerardoVillla/portfolio",
|
||||
"owner": {
|
||||
"username": "GerardoVillla",
|
||||
"email": "luismendezgd@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "portfolio-6f0jbiit2-gerardovilllas-projects.vercel.app"
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"description": "ImprovMX Email",
|
||||
"description": "ImprovMX Mail Forwarding",
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
"discord": "1166013268008120340"
|
||||
},
|
||||
"record": {
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My personal website",
|
||||
"repo": "https://github.com/is-a-dev/docs",
|
||||
"owner": {
|
||||
"username": "ducmanh86",
|
||||
"email": "ducmanh86@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "tranducmanh-info.web.app"
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mGarciaNieto",
|
||||
"email": "mgarcianieto@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mGarciaNieto.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Developer portfolio",
|
||||
"repo": "https://github.com/mtoranzo",
|
||||
"owner": {
|
||||
"username": "mtoranzo",
|
||||
"email": "mtoranzo@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mtoranzo.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Mangellch",
|
||||
"email": "mariangelaraviches@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME":"mangellch.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "martinvruiz",
|
||||
"email": "martinvruiz10@gmail.com",
|
||||
"discord": "martinvruiz10"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "portfoliomvr.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "michaelmuthomi",
|
||||
"email": "lit911call@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "michael-portfolio-green.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "profile-tuan.dev",
|
||||
"owner": {
|
||||
"username": "tuannguyen2002",
|
||||
"email": "nxmtuan.2002@gmail.com",
|
||||
"discord": "nightfury06749"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cname.vercel-dns.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mohammadusman666",
|
||||
"email": "mohammadusman666@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "portfolio-1cw.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Abdullah9715",
|
||||
"email": "muftimuhammadabdullah225@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://latest-porfolio-website.web.app"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "tuan.myprofile.dev",
|
||||
"owner": {
|
||||
"username": "tuannguyen2002",
|
||||
"email": "coixaygio107@gmail.com",
|
||||
"discord": "minhtuan9039"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cname.vercel-dns.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mirzazaman",
|
||||
"email": "mirzazaman828@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "zaman-portfolio.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "syedtahseen",
|
||||
"email": "itxtahseen@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "xproject-xi.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "navalesnahuel",
|
||||
"email": "navalesnahuel@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "navalesnahuel.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "navalesnahuel",
|
||||
"email": "navalesnahuel@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "navalesnahuel.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NailethR",
|
||||
"email": "nait.0005@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "nailethr.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "naman-0804",
|
||||
"email": "namansrivastava1608@gmail.com",
|
||||
"discord": "naman_1101"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "naman08portfolio.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NarasimaPandiyan",
|
||||
"email": "cs42059@gmail.com",
|
||||
"discord": "gamingdoodle"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "NarasimaPandiyan.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tuannguyen2002",
|
||||
"email": "",
|
||||
"discord": "minhtuan9039"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "profile-sigma-wine.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@
|
||||
"185.199.111.153"
|
||||
],
|
||||
"TXT":[
|
||||
"forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2"
|
||||
"forward-email=NTQwMmZhNmI3ZmRiMzQxNC1mOTU1YmRmOGJhMTQxMzhkMGRiNzUwMzg0MzFhOTI4OGE0ZmUwZDYyZTZmZDMyODkwYTE4OGE0ZmQ2YjFjOTk4MjkxN2NlMTUzMTgyNDZlYzE4ZWFkNDllYTBmNDNjY2M4NWVmZGFhMjdhNmY0ODFhZWM0ZWM4ZjhiMzJiMTIyMA=="
|
||||
],
|
||||
"MX":[
|
||||
"mx1.forwardemail.net",
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "13yadav",
|
||||
"email": "yadavranjit521@gmail.com",
|
||||
"discord": "529604454908035083"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ranjityadav.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://raw-api.is-a.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "khuranajordan",
|
||||
"email": "rohankhurana20@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "khuranajordan.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Rohan Jaiswal's portfolio",
|
||||
"repo": "https://github.com/jaiswalrohan8796/jaiswalrohan8796",
|
||||
"owner": {
|
||||
"username": "jaiswalrohan8796",
|
||||
"email": "jaiswalrohan8796@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jaiswalrohan8796.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "rufistofeles",
|
||||
"email": "rufistofeles@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "rufistofeles.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "saert3311",
|
||||
"email": "jose.duarte@trinum.xyz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "trinum.xyz"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "samishoukat12",
|
||||
"email": "samishoukat12@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dev-samishoukat.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Wisauw",
|
||||
"email": "riveross92@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "sebastian-riveros.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Sevinda-Herath",
|
||||
"email": "sevindaherath@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAhBt3btz/Lvou5WOJo+eF4YYWNZHxX0h5vPCfcP0IVtxOcicEhpvuY8DZ86ooVAptJeXKeuXVOz0J3SkAeGu2OAPZdHwKmBXTxvIx040Qhb3plS3T1iQXj3gu8SjkZk2w6X/07iQB+KkUYD8wvAT6UUIyNugQPd74LRYpOV1pRQIDAQAB"
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,9 @@
|
||||
"email": "sevindaherath@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "sevinda-herath.github.io"
|
||||
"CNAME": "sevinda-herath.github.io",
|
||||
"MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"],
|
||||
"TXT": "v=spf1 include:zohomail.com ~all"
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Documentation site for the socordia programming language",
|
||||
"repo": "https://github.com/Socordia-Org/Socordia",
|
||||
"owner": {
|
||||
"username": "furesoft",
|
||||
"email": "chris.anders@outlook.de"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://furesoft.gitbook.io/socordia"
|
||||
},
|
||||
"proxied": false
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user