mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-08-24 10:27:18 +00:00
Merge branch 'main' into main
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
name: Helper
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- closed
|
||||
|
||||
jobs:
|
||||
instructions:
|
||||
name: instructions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }}
|
||||
if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
# - uses: actions/checkout@v2
|
||||
# - name: Comment
|
||||
# if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
# uses: actions/github-script@v3
|
||||
# with:
|
||||
# github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
# script: |
|
||||
# const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
|
||||
# const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
|
||||
# if (hasLabel(context, 'domain'))
|
||||
# console.log('Domain');
|
||||
# await instructions(context, github);
|
||||
@@ -13,8 +13,8 @@ jobs:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-stale: 30
|
||||
days-before-close: 20
|
||||
days-before-stale: 7
|
||||
days-before-close: 14
|
||||
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it'
|
||||
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
|
||||
exempt-issue-labels: 'no-stale'
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
name: URL Validation
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1' # At 00:00 on Monday
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
validation:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- name: Setup Up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- run: pip install requests
|
||||
- run: python tests/url-validation.py
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: URL Validiation Result
|
||||
path: url-validation-result.json
|
||||
retention-days: 7
|
||||
@@ -1,69 +0,0 @@
|
||||
name: Wildcard temp record
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
recordcontent:
|
||||
description: "Record Content"
|
||||
required: true
|
||||
default: "warning"
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Generate JSON file
|
||||
run: |
|
||||
echo '{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "hello@maintainers.is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "${{ github.event.inputs.recordcontent }}"
|
||||
}
|
||||
}' > ./domains/_acme-challenge.json
|
||||
|
||||
- name: test
|
||||
run: cat domains/_acme-challenge.json
|
||||
|
||||
- uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
bun-version: 1.0.3
|
||||
- run: bun install
|
||||
|
||||
- name: Publishing records
|
||||
env:
|
||||
CI: 1
|
||||
NODE_ENV: production
|
||||
ENV: production
|
||||
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
|
||||
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
|
||||
DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
|
||||
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
|
||||
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
|
||||
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
|
||||
run: bun run publish-records
|
||||
- name: Sleep
|
||||
run: sleep 10m
|
||||
shell: bash
|
||||
|
||||
- name: Remove
|
||||
run: rm domains/_acme-challenge.json
|
||||
shell: bash
|
||||
|
||||
- name: removing records
|
||||
env:
|
||||
CI: 1
|
||||
NODE_ENV: production
|
||||
ENV: production
|
||||
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
|
||||
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
|
||||
DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
|
||||
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
|
||||
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
|
||||
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
|
||||
run: bun run publish-records
|
||||
+5
-4
@@ -5,17 +5,18 @@ RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
|
||||
|
||||
RUN apt-get -y update
|
||||
RUN apt-get install -y nodejs npm curl wget dnsutils certbot --fix-missing
|
||||
RUN apt-get install -y unzip
|
||||
|
||||
RUN npm i -g n yarn && n 15.11
|
||||
RUN bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'"
|
||||
|
||||
RUN node -v
|
||||
RUN ~/.bun/bin/bun -v
|
||||
|
||||
WORKDIR /opt/app
|
||||
|
||||
COPY yarn.lock .
|
||||
COPY bun.lockb .
|
||||
COPY package.json .
|
||||
|
||||
RUN yarn install
|
||||
RUN ~/.bun/bin/bun install
|
||||
|
||||
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
|
||||
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0xSuryax",
|
||||
"email": "surya98613@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["38.242.141.34"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "cy920820",
|
||||
"email": "cuiyang673308817@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RainyXeon",
|
||||
"email": "minh15052008@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "5a3e476d-47ce-4088-9b34-42cdb8c3395b.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "1st.is-a.dev",
|
||||
"repo": "https://github.com/Rahuletto/1st",
|
||||
"owner": {
|
||||
"username": "Rahuletto",
|
||||
"email": "rahulmarban@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "d0720bf3-70d2-4b24-9273-b44ce8e0c708.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "21Z",
|
||||
"email": "hamdankalliyil@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -6,4 +6,4 @@
|
||||
"record": {
|
||||
"A": ["130.162.166.134"]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "3kh0",
|
||||
"email": "echo-the-coder@tuta.io"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "4cxa",
|
||||
"email": "kurdiabood123@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "VerloxDevs",
|
||||
"email": "VorlexDevs@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "70A5",
|
||||
"email": "joas.van.der.eerden@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Sonic853",
|
||||
"email": "sonic853@qq.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["119.29.157.82"]
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "sweepalf@gmail.com"
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "amol234545",
|
||||
"email": "amolmilton@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CuteDog5695",
|
||||
"email": "cutedog5695@gmail.com",
|
||||
"discord": "cutedog5695",
|
||||
"twitter": "cutedog5695"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "DynoW",
|
||||
"email": "naffets0@gmail.com",
|
||||
"discord": "455608238335983617"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=8bb2a3b679cd393d772165a0baf0eea849b5c698"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EnderPoint07",
|
||||
"email": "",
|
||||
"discord": "DotM38#5497"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=1ad21660e3db8fba8f5f18150a89514bee83350e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jirafey",
|
||||
"email": "jirafey@tuta.io"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"description": "_discord.kuba is a subdomain for verification of Discord's domain ownership system.",
|
||||
"owner": {
|
||||
"telegram": "idkuba",
|
||||
"username": "kbvivi",
|
||||
"email": "kbvivi.contact@gmail.com",
|
||||
"discord": "105170831130234880"
|
||||
},
|
||||
"repo": "https://github.com/kbvivi/kuba.lol",
|
||||
"record": {
|
||||
"TXT": [
|
||||
"dh=4f43d84403713773fa9506963218fe01cfd9b61d"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "oyepriyansh",
|
||||
"email": "oyepriyansh@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "0e84f14f3a"
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": ["217.174.245.249"]
|
||||
"TXT": "2c9dfbe7c8"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "sweepalf@gmail.com"
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9568f60569"
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "3436b41d67"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "ed3c92c01a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CuteDog5695",
|
||||
"email": "cutedog5695@gmail.com",
|
||||
"discord": "cutedog5695",
|
||||
"twitter": "cutedog5695"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "cd8aac10494e4b5b76656163a11508"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "GitHub Pages verification for foxsden.is-a.dev",
|
||||
"owner": {
|
||||
"username": "FoxsDenYT",
|
||||
"email": "foxsdenyt+isadev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "37455d1a9cf706acc4f0cd6ada2ce7"
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,6 @@
|
||||
"email": "avi.pars@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "68e225e3d290a962de10935ed3f684"
|
||||
"TXT": "870948b647f71ebf9489fa34db4efb"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Github page domain verification",
|
||||
"owner": {
|
||||
"username": "fa-fifi",
|
||||
"email": "fafifi1997@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "4076c15aac94a89c1a131d252cf368"
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "dns.beadman-network.com"
|
||||
"TXT": "c551c059fb167540ec0498d9011556"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jakehe1226",
|
||||
"email": "jakehe1226@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "d96dac12901888fba491ca3e7666b6"
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
"email": "oliver.anderson4435@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "088d75670097903fabd47977697d42"
|
||||
"TXT": "39223fa7956e66887c05db8b244538"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "prakhillohiya",
|
||||
"email": "prakhillohiya@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "31f067f6796f63a3cb4e0110ff10df"
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RivioxGaming",
|
||||
"username": "riviox",
|
||||
"email": "rivioxyt@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://discord.gg/wcXRzrbAaX"
|
||||
"TXT": "15bce163359555d636e6bd2cc5903f"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "riviox",
|
||||
"email": "rivioxyt@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "56a8f3f0363cd17d881a7380ede544"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "riviox",
|
||||
"email": "rivioxyt@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "2f2432d565a3e7e8f3a4577c0e4a90"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "phenax5@gmail.com"
|
||||
"username": "wdhdev",
|
||||
"email": "william@williamharrison.dev"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "98ab14aec3df26fb9b1626d584d5f5"
|
||||
"TXT": "dd771e3f8e535c62bb471e3760dc66"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "phenax5@gmail.com"
|
||||
"username": "wdhdev",
|
||||
"email": "william@williamharrison.dev"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "a6bc96312c4473df6c37f63d3e0fed"
|
||||
"TXT": "f702ea064c3d034b70bb3576bba918"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "alijafari-gd",
|
||||
"email": "ali.jafari.sn@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://alijafari.is-a.dev"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "9898video",
|
||||
"email": "548625653@qq.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mg.707077.xyz"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aadarshKsingh",
|
||||
"email": "aadarshkumarsingh198@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "GauravPlxyz",
|
||||
"email": "polsagyipols6@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AakrishtSP",
|
||||
"email": "akrisht62@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "antoripdas",
|
||||
"email": "aantaripdas@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"description": "A Personal Portfilo",
|
||||
"repo": "https://portfolio.anime0test.repl.co",
|
||||
"owner": {
|
||||
"username": "LittleSoldierGaming",
|
||||
"email": "aantaripdas@gmail.com",
|
||||
"twitter": "littlesoldiergaming"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "2df92555-30ba-4899-bbb8-2906a8f5c7e0.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gbgdonttalk",
|
||||
"email": "d1qtwmsmdga@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abdallahmehiz",
|
||||
"email": "abdallah.mehiz@univ-bba.dz"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "abdallah.mehiz.xyz"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abdessattarElyagoubi",
|
||||
"email": "abdeldroid2@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abdessattar-elyagoubi.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AleaToir3",
|
||||
"email": "aleatoir3@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abdessattarElyagoubi",
|
||||
"email": "abdeldroid2@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abdessattarelyagoubi.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "5enox",
|
||||
"email": "animikantan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Abdul1810",
|
||||
"email": "abdulking8010@gmail.com",
|
||||
"discord": "Abdul ♥#5464"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "rahman.works"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abdullohalimov",
|
||||
"email": "raistlinmajere10@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["91.200.84.14"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "FIRSTB0SS",
|
||||
"email": "abhiwa6@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abhinandanwadwa",
|
||||
"email": "abhinandanwadhwa5@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": ["139.59.76.105"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abhinavcool42",
|
||||
"email": "abhinavcool42@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "goesbyabhi",
|
||||
"email": "abxisxekpanda@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "abhishek-pb1",
|
||||
"email": "studentabhishekpb@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ajachintya",
|
||||
"email": "ajachintyajaiswal@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://portfolio-app-production.up.railway.app"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ActivateClosur3",
|
||||
"email": "activateclosureyt@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
|
||||
"MX": ["hosts.is-a.dev"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "waitwhatActo",
|
||||
"email": "acton.clever@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ad1107",
|
||||
"email": "nguyenanhducxmen@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Adarsh-Inamdar",
|
||||
"email": "adarshinamdar2003@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
|
||||
"MX": ["hosts.is-a.dev"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsmeadarsh2008",
|
||||
"email": "gourabmahalikadarsh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://broughtbyalgorithm.blogspot.com"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "cppqtdev",
|
||||
"email": "akshworkmail@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "adhitht",
|
||||
"email": "adhith.tharammal@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://adhitht.me"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Adib23704",
|
||||
"email": "adib23704@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "adib23704.tk"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "adyoblu",
|
||||
"email": "adyoblu2000@yahoo.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "This is my personal portfolio website",
|
||||
"repo": "https://github.com/Adityyaaa/adityyaaa.github.io",
|
||||
"owner": {
|
||||
"username": "Adityyaaa",
|
||||
"email": "aditya.awasthi612@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "adityyaaa.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AdityaBhattacharya1",
|
||||
"email": "utoprocess@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Aditya-Jyoti",
|
||||
"email": "aj.adityajyoti@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://aditya-jyoti.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "adityakotha2001",
|
||||
"email": "adityakotha2001@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "adiyadav123",
|
||||
"email": "ramanandyadav7650@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Adri11334",
|
||||
"email": "adrien.vermersch@epitech.eu",
|
||||
"discord": "Дdяi1#7501"
|
||||
},
|
||||
"record": {
|
||||
"A": ["116.203.127.206"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AeolusDev",
|
||||
"email": "aeolusdeveloper@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Will save it for future for my portfolio site",
|
||||
"owner": {
|
||||
"username": "aestra",
|
||||
"email": "aestradev@gmail.com",
|
||||
"github": "aestradev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "portfolio-production-7e27.up.railway.app"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aetinx",
|
||||
"email": "",
|
||||
"twitter": "aetinx",
|
||||
"discord": "aetinx#8300",
|
||||
"note": "amogus"
|
||||
},
|
||||
"description": "Aetinx's domain. https://aetinx.glitch.me",
|
||||
"record": {
|
||||
"CNAME": "glitch.edgeapp.net"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "afnan007a",
|
||||
"email": "mr.goblin007a@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "portfolio-cci.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AndreasFxPro",
|
||||
"email": "",
|
||||
"discord": "AndreasFxPro#9330"
|
||||
},
|
||||
"description": "this is-a.dev page is for me, i'll post my projects",
|
||||
"record": {
|
||||
"A": ["140.238.175.208"]
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Ahmed's personal site",
|
||||
"repo": "https://github.com/Dropheart",
|
||||
"owner": {
|
||||
"username": "dropheart",
|
||||
"email": "ahmed@techfromtheheart.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://techfromtheheart.com"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "ahmet's personal website",
|
||||
"repo": "https://github.com/ahmetesad",
|
||||
"owner": {
|
||||
"username": "ahmetesad",
|
||||
"email": "ahmetesad@pm.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "f13e0f65-a2c0-4466-b220-29a46ae78562.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AidanTheJsDev",
|
||||
"email": "24aidanwhite@usd266.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
|
||||
"owner": {
|
||||
"username": "aikooo7",
|
||||
"email": "prozinhopro1973@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "my-blog-vpp1.onrender.com"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "ailakks.is-a.dev.",
|
||||
"repo": "https://github.com/ailakks",
|
||||
"owner": {
|
||||
"username": "ailakks",
|
||||
"email": "hola@cortmnzz.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://cortmnzz.com"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mhmdysf",
|
||||
"email": "muhammadyusuf1325@smp.belajar.id"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://linktr.ee/aizawakiyaworu"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Aditya-Jyoti",
|
||||
"email": "aj.adityajyoti@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://aditya-jyoti.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "For personal use",
|
||||
"repo": "https://github.com/ajaykrshna/ajaykrshna.github.io",
|
||||
"owner": {
|
||||
"username": "ajaykrshna",
|
||||
"email": "ajaykfan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ajaykrshna.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "LRxDarkDevil",
|
||||
"email": "tahaadnanawan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ak-dev.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Akas Portfolio",
|
||||
"repo": "https://github.com/akasrai/akasrai.github.io",
|
||||
"owner": {
|
||||
"username": "akasrai",
|
||||
"email": "akasky70@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "akasrai.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "SquareSmp",
|
||||
"email": "squaresmp@asia.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["217.174.245.249"],
|
||||
"MX": ["hosts.is-a.dev"],
|
||||
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "LegendOP1041",
|
||||
"email": "maillegendop@gmail.com",
|
||||
"discord": "1056531806763102218"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": ["69.30.249.53"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Abdulazizkhan-K-N-B",
|
||||
"email": "abdulazizkhan.k.n.b@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["47.242.127.210"]
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
},
|
||||
"record": {
|
||||
"A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"],
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"TXT": ["v=spf1 include:spf.improvmx.com ~all", "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDmKWCucfCBImz9pOWBPV5+SO3KNqeQSt6Jusv+3Rbm8BbSv8H0x+E0TEe4JjfNNUmVQ7zNlZFJK4Hlv453aXBNbkk9kzsekW8qm4ZGjeQwMBo2f4V6tkxPFtcYnUfNskc3194C5gH4AusJ4WMbYOe9GNxCRhuok+5tIGciJXxbWQIDAQAB"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "d7dx",
|
||||
"email": "d7dx@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "d7dx.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "noob0701",
|
||||
"email": "akshat250870@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "main.dfn6axfpgkelx.amplifyapp.com"
|
||||
}
|
||||
}
|
||||
+1
-2
@@ -6,7 +6,6 @@
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://ediblemonad.dev",
|
||||
"TXT": [ "Hello there!", "It's me, Akshay" ]
|
||||
"URL": "https://ediblemonad.dev"
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user