mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-09-03 06:19:11 +00:00
Merge branch 'is-a-dev:main' into main
This commit is contained in:
@@ -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": "horibyte",
|
||||
"email": "thehoribyte@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75"
|
||||
}
|
||||
}
|
||||
@@ -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,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "peme969",
|
||||
"email": "mrcoderpeme@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT":[
|
||||
"forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "2aeb08f313"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "30e221e0a1"
|
||||
}
|
||||
}
|
||||
@@ -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": "ethereumvd",
|
||||
"email": "ethereum249@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "acffd9c330d027fef82987d6dd8b4e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "18b49a8904257ea06c3595614d9a4e"
|
||||
}
|
||||
}
|
||||
@@ -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,12 @@
|
||||
{
|
||||
"description": "A simple portfolio template made by me.",
|
||||
"repo": "https://github.com/deadshotofficial/minimal-portfolio",
|
||||
"owner": {
|
||||
"username": "deadshotofficial",
|
||||
"email": "deadshot3r@pm.me",
|
||||
"discord": "416952474587496449"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=deadshot.is-a.dev,5bc34658e6351c74153c"
|
||||
}
|
||||
}
|
||||
@@ -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": "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,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Maqed",
|
||||
"email": "magedibra@yahoo.com",
|
||||
"discord": "272808689688248320"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=magedibrahim.is-a.dev,7bdbe7e115da902cbd7d"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "maheshpaulj",
|
||||
"email": "mahesh.paul.j@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=maheshpaul.is-a.dev,a6be9b77a63b6d4c8cd6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "voltonik",
|
||||
"email": "markasaadramzy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=markasaad.is-a.dev,466430b693facfcda35d"
|
||||
}
|
||||
}
|
||||
@@ -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": "13yadav",
|
||||
"email": "yadavranjit521@gmail.com",
|
||||
"discord": "529604454908035083"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ronaldoao",
|
||||
"email": "ronaldoa.ojeda@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=ronaldo.is-a.dev,bba2427440502a716d1c"
|
||||
}
|
||||
}
|
||||
@@ -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,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "bananaking6",
|
||||
"email": "",
|
||||
"discord": "skibidibagel"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d"
|
||||
}
|
||||
}
|
||||
@@ -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,11 @@
|
||||
{
|
||||
"description": "Documentation website for Aaron Fort",
|
||||
"repo": "https://github.com/AaronFortG",
|
||||
"owner": {
|
||||
"username": "AaronFortG",
|
||||
"email": "aaronfortg@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mycurriculum.salleurl.edu"
|
||||
}
|
||||
}
|
||||
@@ -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,11 @@
|
||||
{
|
||||
"description": "This subdomain hosts my personal portfolio website.",
|
||||
"repo": "https://github.com/abineethan/abineethan.github.io",
|
||||
"owner": {
|
||||
"username": "abineethan",
|
||||
"email": "abineethan22@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abineethan.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ALEXXHUMILDE",
|
||||
"email": "alexxcrack3@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "alexxhumilde.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "badrelmers",
|
||||
"email": "alkorsan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "alkorsan.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -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": "My perosnal portfolio",
|
||||
"repo": "https://github.com/anthonycursewl/brd-portfolio",
|
||||
"owner": {
|
||||
"username": "anthonycursewl",
|
||||
"email": "zerpaathony.wx@breadriuss.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "anthportafolio.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aocsa",
|
||||
"email": "alexander.ocsa@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "aocsa.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Delta-0mega",
|
||||
"email": "seikoo.dev@gmail.com",
|
||||
"discord": "1293641904860172389"
|
||||
},
|
||||
"record": {
|
||||
"A": ["88.151.197.194"]
|
||||
}
|
||||
}
|
||||
@@ -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 @@
|
||||
{
|
||||
"description": "Portfolio website for Awais Khan Niazi",
|
||||
"repo": "https://github.com/askhan963/register",
|
||||
"owner": {
|
||||
"username": "askhan963",
|
||||
"email": "awaisknas963@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "awaiskhanniazi.netlify.app"
|
||||
},
|
||||
"proxied": false
|
||||
}
|
||||
@@ -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,11 @@
|
||||
{
|
||||
"description": "Portfolio Website",
|
||||
"repo": "https://github.com/codevodka/Random-PDF",
|
||||
"owner": {
|
||||
"username": "codevodka",
|
||||
"email": "mafiurislam2022@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "codevodka.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "bananaking6",
|
||||
"email": "",
|
||||
"discord": "skibidibagel"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "sandpack-jet.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -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": "DanielZambranoC",
|
||||
"email": "trail.moth9771@eagereverest.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://www.linkedin.com/in/danielzambranoc/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "David Mendoza Pardo",
|
||||
"repo": "https://github.com/dave-mp/davemp",
|
||||
"owner": {
|
||||
"username": "dave-mp",
|
||||
"email": "david.mendoza@chibchapps.io",
|
||||
"twitter": "dave-mp"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "davemp.vercel.app"
|
||||
}
|
||||
}
|
||||
+10
-10
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"description": "Updated Website 2023 Edition Haha",
|
||||
"repo": "https://github.com/deadshotofficial/deadshotofficial.github.io",
|
||||
"owner": {
|
||||
"username": "deadshotofficial",
|
||||
"email": "deadshot3r@pm.me",
|
||||
"twitter": "deadshot3r"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "deadshotofficial.github.io"
|
||||
}
|
||||
"description": "A simple portfolio template made by me.",
|
||||
"repo": "https://github.com/deadshotofficial/minimal-portfolio",
|
||||
"owner": {
|
||||
"username": "deadshotofficial",
|
||||
"email": "deadshot3r@pm.me",
|
||||
"discord": "416952474587496449"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "deadshotdev.vercel.app"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "thisisdhika",
|
||||
"email": "dhikaardana87@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "thisisdhika.vercel.app"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "is-a.dev"
|
||||
"CNAME": "is-a-dev-docs.pages.dev"
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "donangel",
|
||||
"email": "public@doncho.net"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://doncho.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "My page",
|
||||
"repo": "https://github.com/zessu/zessu.github.io",
|
||||
"owner": {
|
||||
"username": "zessu",
|
||||
"email": "regime-pluck-gulf@duck.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "zessu.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Faber Vergara - Web Developer",
|
||||
"repo": "https://github.com/emamut/cv",
|
||||
"owner": {
|
||||
"username": "emamut",
|
||||
"email": "fabervergara@gmail.ocm"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "emamut.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ALEXXHUMILDE",
|
||||
"email": "alexxcrack3@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "enlaces-alexxhumilde.netlify.app"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal webpage",
|
||||
"repo": "https://github.com/eojeda89/eojeda89.github.io",
|
||||
"owner": {
|
||||
"username": "eojeda89",
|
||||
"email": "ernestoojeda89@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "eojeda89.github.io"
|
||||
}
|
||||
}
|
||||
+7
-16
@@ -1,18 +1,9 @@
|
||||
{
|
||||
"description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
|
||||
"repo": "https://github.com/ErmalHasani/ErmalHasani.github.io",
|
||||
"owner": {
|
||||
"username": "ErmalHasani",
|
||||
"email": "ermalhasani15@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"185.199.108.153",
|
||||
"185.199.109.153",
|
||||
"185.199.110.153",
|
||||
"185.199.111.153"
|
||||
],
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
"owner": {
|
||||
"username": "ErmalHasani",
|
||||
"email": "ermalhasani15@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "terminalportfolio-2wp.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal portfolio website",
|
||||
"repo": "https://github.com/ethereumvd/ethereumvd.github.io",
|
||||
"owner": {
|
||||
"username": "ethereumvd",
|
||||
"email": "ethereum249@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ethereumvd.github.io"
|
||||
}
|
||||
}
|
||||
@@ -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": "senseikoder",
|
||||
"email": "molina.frank@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "efrank.xyz"
|
||||
}
|
||||
}
|
||||
@@ -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,11 @@
|
||||
{
|
||||
"description": "My personal website",
|
||||
"repo": "https://github.com/bistcuite/bistcuite.github.io",
|
||||
"owner": {
|
||||
"username": "bistcuite",
|
||||
"email": "hnk1440@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bistcuite.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Horibyte's personal website",
|
||||
"repo": "https://github.com/horibyte/horibyte.github.io",
|
||||
"owner": {
|
||||
"username": "horibyte",
|
||||
"email": "thehoribyte@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "horibyte.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "adalbertobrant.is-a.dev",
|
||||
"repo": "https://github.com/adalbertobrant/adalbertobrant",
|
||||
"owner": {
|
||||
"username": "adalbertobrant",
|
||||
"email": "adalbertobrant@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://github.com/adalbertobrant/adalbertobrant"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsmepvr",
|
||||
"email": "pvrreddy155@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "itsmepvr.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"description": "Personal Portfolio Website",
|
||||
"repo": "https://github.com/ifayala",
|
||||
"owner": {
|
||||
"username": "ifayala",
|
||||
"email": "ivo@dailabs.io",
|
||||
"discord": "lt_smash666"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"34.16.212.81"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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": "Jai Singh Rathore's Portfolio Website",
|
||||
"repo": "https://github.com/jaizxzx/jaizxzx.github.io",
|
||||
"owner": {
|
||||
"username": "jaizxzx",
|
||||
"email": "jaisinghrathore4432@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jaizxzx.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jbmbhs",
|
||||
"email": "juan@belmontemarin.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"URL": "https://www.linkedin.com/in/juan-belmonte-821175112/"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PentSec",
|
||||
"email": "jeffreysfu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "pentsec.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jesusdmedinac",
|
||||
"email": "jesus.daniel.medina.cruz@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jesusdmedinac.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Portfolio website.",
|
||||
"repo": "https://github.com/jonasfroeller/jonasfroeller",
|
||||
"owner": {
|
||||
"username": "JonathanB500",
|
||||
"email": "jonathanbuitrago505@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jonathanbuitragoroncancio.web.app"
|
||||
}
|
||||
}
|
||||
@@ -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": "j0rg3",
|
||||
"email": "jorge.lopezvz@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://github.com/j0rgel0/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "JMVS",
|
||||
"email": "jose.veramutka@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "veramutka.com.ar"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jretamal",
|
||||
"email": "jretamal@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://jretamal.cl"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "chuyto",
|
||||
"email": "jesusanchez221296@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jsanchez-9148b.web.app"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+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
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "json for the domain is-a.dev",
|
||||
"repo": "https://github.com/LautaroMol",
|
||||
"owner": {
|
||||
"username": "LautaroMol",
|
||||
"email": "Laumol159@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://lautaroportfolio.vercel.app/"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cname.short.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lio10jr",
|
||||
"email": "kevinzambrano593@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://github.com/Lio10jr"
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,6 @@
|
||||
"email": "luis073094@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://portafolioluisandre.azurewebsites.net",
|
||||
"A": ["20.206.176.7"]
|
||||
"URL": "https://portafolioluisandre.azurewebsites.net"
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user