mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-24 15:36:16 +00:00
Merge branch 'main' into branch
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
DOMAIN_USER=username
|
||||
DOMAIN_API_KEY=apikey
|
||||
DOMAIN_API_HOST=api-example.com
|
||||
DOMAIN_API_PORT=2087
|
||||
DOMAIN_DOMAIN=example.com
|
||||
DOMAIN_HOST_IP=69.69.69.69
|
||||
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:node/recommended",
|
||||
"plugin:json/recommended"
|
||||
],
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2020
|
||||
},
|
||||
"rules": {
|
||||
"indent": ["error", 2],
|
||||
"max-len": ["error", {
|
||||
"code": 100,
|
||||
"ignoreStrings": true,
|
||||
"ignoreTemplateLiterals": true,
|
||||
"ignoreTrailingComments": true
|
||||
}],
|
||||
"node/exports-style": ["error", "module.exports"],
|
||||
"node/file-extension-in-import": ["error", "always"],
|
||||
"node/prefer-global/buffer": ["error", "always"],
|
||||
"node/prefer-global/console": ["error", "always"],
|
||||
"node/prefer-global/process": ["error", "always"],
|
||||
"node/prefer-global/url-search-params": ["error", "always"],
|
||||
"node/prefer-global/url": ["error", "always"],
|
||||
"node/prefer-promises/dns": "error",
|
||||
"node/prefer-promises/fs": "error",
|
||||
"no-process-exit": [0],
|
||||
"node/no-unsupported-features/node-builtins": [0],
|
||||
"node/no-unsupported-features/es-syntax": [0]
|
||||
}
|
||||
}
|
||||
+4
-3
@@ -1,7 +1,8 @@
|
||||
* @phenax
|
||||
* @phenax @wdhdev
|
||||
|
||||
/.github/ @wdhdev
|
||||
/.github/CODEOWNERS @phenax
|
||||
|
||||
/domains/ @is-a-dev/maintainers
|
||||
|
||||
*.md @is-a-dev/maintainers
|
||||
/LICENSE @phenax
|
||||
/dnsconfig.js @wdhdev @andrewstech
|
||||
|
||||
+2
-1
@@ -1,2 +1,3 @@
|
||||
custom: ["https://www.paypal.me/phenax", "https://www.buymeacoffee.com/phenax"]
|
||||
custom: ["https://www.paypal.me/phenax"]
|
||||
liberapay: phenax
|
||||
buy_me_a_coffee: phenax
|
||||
|
||||
@@ -6,11 +6,11 @@ Unless explicitly specified otherwise by a **maintainer** or in the requirement
|
||||
Please note that we reserve the rights not to accept any domain at our own discretion.
|
||||
|
||||
- [ ] 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. -->
|
||||
- [ ] You're not using Vercel or Netlify. <!-- This is not required if you're using an URL record. -->
|
||||
- [ ] 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. -->
|
||||
<!-- 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! -->
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
name: Checks
|
||||
on: [pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
validation:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
bun-version: 1.0.26
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
@@ -1,31 +0,0 @@
|
||||
name: Publish records
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
name: 'Publish records'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
if: github.repository == 'is-a-dev/register'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
bun-version: 1.0.26
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
- 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
|
||||
@@ -0,0 +1,32 @@
|
||||
name: Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "domains/*"
|
||||
- ".github/workflows/publish.yml"
|
||||
- "dnsconfig.js"
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.ref }}-publish
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
dns:
|
||||
name: DNS
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Generate creds.json
|
||||
run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json
|
||||
|
||||
- name: Publish
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
env:
|
||||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
with:
|
||||
args: push
|
||||
@@ -40,8 +40,7 @@ jobs:
|
||||
source-directory: "raw-api"
|
||||
destination-github-username: is-a-dev
|
||||
destination-repository-name: raw-api
|
||||
user-email: is-a-dev@win11react.com
|
||||
user-name: is-a-dev-bot
|
||||
commit-message: "Update Data via is-a-dev/register"
|
||||
user-email: actions@github.com
|
||||
user-name: "GitHub Actions"
|
||||
env:
|
||||
API_TOKEN_GITHUB: ${{ secrets.BOT }}
|
||||
|
||||
@@ -14,7 +14,7 @@ jobs:
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-stale: 7
|
||||
days-before-close: 14
|
||||
days-before-close: 3
|
||||
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'
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
name: Validation
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "domains/*"
|
||||
- ".github/workflows/validation.yml"
|
||||
- "dnsconfig.js"
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.ref }}-validation
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
dns:
|
||||
name: DNS
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
with:
|
||||
args: check
|
||||
|
||||
json:
|
||||
name: JSON
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: JSON Syntax Check
|
||||
uses: limitusus/json-syntax-check@v2
|
||||
with:
|
||||
pattern: "\\.json$"
|
||||
env:
|
||||
BASE: "domains/"
|
||||
@@ -1,4 +0,0 @@
|
||||
node_modules/
|
||||
*.env.production
|
||||
*.log
|
||||
is-a-dev-cert/
|
||||
-22
@@ -1,22 +0,0 @@
|
||||
FROM ubuntu:20.04
|
||||
|
||||
ENV TERM xterm
|
||||
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 bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'"
|
||||
|
||||
RUN ~/.bun/bin/bun -v
|
||||
|
||||
WORKDIR /opt/app
|
||||
|
||||
COPY bun.lockb .
|
||||
COPY package.json .
|
||||
|
||||
RUN ~/.bun/bin/bun install
|
||||
|
||||
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
|
||||
|
||||
+3
-10
@@ -2,17 +2,10 @@
|
||||
| Name | GitHub | Role |
|
||||
|:-:|-|-|
|
||||
| Akshay | [@phenax](https://github.com/phenax) | Owner |
|
||||
|||
|
||||
| William | [@wdhdev](https://github.com/wdhdev) | Administrator |
|
||||
||
|
||||
| Andrew | [@andrewstech](https://github.com/andrewstech) | Maintainer |
|
||||
| CuteDog5695 | [@CuteDog5695](https://github.com/CuteDog5695) | Maintainer |
|
||||
| Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer |
|
||||
| DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer |
|
||||
| Mahir | [@mtgsquad](https://github.com/mtgsquad) | Maintainer |
|
||||
| Satria | [@SX-9](https://github.com/SX-9) | Maintainer |
|
||||
| Vaibhav | [@VaibhavSys](https://github.com/VaibhavSys) | Maintainer |
|
||||
||
|
||||
| Om | [@TerraPlayz](https://github.com/TerraPlayz) | Helper |
|
||||
| Phoenix | [@PhoenixOrigin](https://github.com/PhoenixOrigin) | Helper |
|
||||
| Stef | [@Stef-00012](https://github.com/Stef-00012) | Helper |
|
||||
| Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer |
|
||||
| orangc | [@orxngc](https://github.com/orxngc) | Maintainer |
|
||||
| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer |
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
<p align="center">
|
||||
<img alt="is-a-dev Banner" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png">
|
||||
<img alt="is-a.dev Banner" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Domains" src="https://img.shields.io/github/directory-file-count/is-a-dev/register/domains?color=5c46eb&label=domains&style=for-the-badge">
|
||||
<img alt="Open Pull Requests" src="https://img.shields.io/github/issues-raw/is-a-dev/register?color=5c46eb&label=issues&style=for-the-badge">
|
||||
<img alt="Open Issues" src="https://img.shields.io/github/issues-pr-raw/is-a-dev/register?color=5c46eb&label=pull%20requests&style=for-the-badge">
|
||||
<br>
|
||||
<img alt="Publish" src="https://github.com/is-a-dev/register/actions/workflows/publish.yml/badge.svg">
|
||||
<img alt="Raw API" src="https://github.com/is-a-dev/register/actions/workflows/raw-api.yml/badge.svg">
|
||||
</p>
|
||||
|
||||
<h1 align="center">is-a.dev</h1>
|
||||
@@ -13,52 +16,39 @@
|
||||
<p align="center"><strong>is-a-dev</strong> is a service that allows developers to get a sweet-looking ".is-a.dev" domain for their personal websites.</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://discord.gg/is-a-dev-830872854677422150"><img alt="Discord Server" src="https://discord.com/api/guilds/830872854677422150/widget.png?style=banner2"></a>
|
||||
<a href="https://discord.gg/is-a-dev-830872854677422150"><img alt="Discord Server" src="https://invidget.switchblade.xyz/is-a-dev-830872854677422150"></a>
|
||||
</p>
|
||||
|
||||
[](https://github.com/is-a-dev/register/actions/workflows/publish.yml)
|
||||
|
||||
## Issues
|
||||
If you have any problems, feel free to [open a issue](https://github.com/is-a-dev/register/issues/new/choose).
|
||||
|
||||
If you have an issue that contains confidental infomation, send an email to security@maintainers.is-a.dev.
|
||||
If you have an issue that contains confidental infomation, send an email to security@is-a.dev.
|
||||
|
||||
## Register
|
||||
### NS records
|
||||
When applying for NS records, please consider if you *actually* need them. Please provide a detailed reason (with evidence) of why you require NS records.
|
||||
|
||||
### Automated Registration
|
||||
Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your GitHub account and click the register page in the navbar. Fill out some questions and it will all happen automatically!
|
||||
9 times out of 10, you do not actually need NS records, and merely want them. We already support a wide range of records, so it is extremely unlikely you will actually require them.
|
||||
|
||||
Another method is to join our [Discord server](https://discord.gg/PZCGHz4RhQ), head to the commands channel and run `/register`. The bot will ask you a few questions then will generate your PR and domain automatically. The bot also allows for domain deletion and editing.
|
||||
Pull requests adding NS records without reasoning will be closed instantly.
|
||||
|
||||
### Manual Registration
|
||||
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
|
||||
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`.
|
||||
- [Read the documentation](https://www.is-a.dev/docs).
|
||||
> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge).
|
||||
|
||||
- [Fork](https://github.com/is-a-dev/register/fork) and star this repository
|
||||
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`
|
||||
- [Read the documentation](https://is-a.dev/docs)
|
||||
- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!*
|
||||
- After the pull request is merged, please allow up to 24 hours for the changes to propagate.
|
||||
- After the pull request is merged, please allow up to 24 hours for the changes to propagate
|
||||
- Enjoy your new `.is-a.dev` domain!
|
||||
|
||||
### CLI Registration
|
||||
For issues with the CLI, do **not** open an issue on this repository, instead open an issue on the [is-a-dev/cli](https://github.com/is-a-dev/cli/issues/new) repository.
|
||||
### Automated Registration
|
||||
> [!WARNING]
|
||||
> **When using automated registration, please ensure your records are valid. Please do NOT "test" out the system and create invalid PRs, it wastes maintainers' time.**
|
||||
|
||||
Install the CLI:
|
||||
|
||||
```bash
|
||||
npm install @is-a-dev/cli -g
|
||||
```
|
||||
|
||||
Login to the CLI:
|
||||
|
||||
```bash
|
||||
is-a-dev login
|
||||
```
|
||||
|
||||
Register a subdomain on the CLI:
|
||||
|
||||
```
|
||||
is-a-dev register
|
||||
```
|
||||
|
||||
## Status
|
||||
You can check the uptime of our services on our [status dashboard](https://is-a-dev.wdh.gg).
|
||||
Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150), head to the commands channel and run `/register`. The bot will ask you a few questions then will generate your PR and domain automatically. The bot also allows for domain deletion and editing.
|
||||
|
||||
### Donate
|
||||
If you like this project, please consider donating so we can keep this project running forever!
|
||||
@@ -66,5 +56,11 @@ If you like this project, please consider donating so we can keep this project r
|
||||
<a href="https://www.buymeacoffee.com/phenax" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me a Coffee" height="28" width="119"></a>
|
||||
<a href="https://liberapay.com/phenax" target="_blank"><img src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=for-the-badge" alt="Liberapay"></a>
|
||||
|
||||
### Sponsors
|
||||
|
||||
<a href="https://www.cloudflare.com/lp/project-alexandria/">
|
||||
<img alt="Cloudflare Logo" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/cloudflare.png" height="128">
|
||||
</a>
|
||||
|
||||
### Similar Services
|
||||
If you want to find services similar to is-a.dev, take a look on [Free For Life](https://github.com/wdhdev/free-for-life#domains).
|
||||
If you want to find services similar to is-a.dev, take a look at [Free For Life](https://github.com/wdhdev/free-for-life#domains).
|
||||
|
||||
+1
-1
@@ -3,4 +3,4 @@
|
||||
## Reporting a vulnerability
|
||||
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository.
|
||||
|
||||
However, for **higher severity vulnerabilities and bugs**, please email security@maintainers.is-a.dev.
|
||||
However, for **higher severity vulnerabilities and bugs**, please email security@is-a.dev.
|
||||
|
||||
-15
@@ -1,15 +0,0 @@
|
||||
{ nixpkgs ? import <nixpkgs> {} }:
|
||||
let
|
||||
inherit (nixpkgs) pkgs;
|
||||
|
||||
nixPackages = with pkgs; [
|
||||
yarn
|
||||
docker-compose
|
||||
dnsutils
|
||||
bun
|
||||
];
|
||||
in
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "env";
|
||||
buildInputs = nixPackages;
|
||||
}
|
||||
+121
@@ -0,0 +1,121 @@
|
||||
function getDomainsList(filesPath) {
|
||||
var result = [];
|
||||
var files = glob.apply(null, [filesPath, true, ".json"]);
|
||||
|
||||
for (var i = 0; i < files.length; i++) {
|
||||
var name = files[i].split("/").pop().replace(/\.json$/, "");
|
||||
|
||||
result.push({ name: name, data: require(files[i]) });
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
var domains = getDomainsList("./domains");
|
||||
var commit = [];
|
||||
|
||||
for (var subdomain in domains) {
|
||||
var subdomainName = domains[subdomain].name;
|
||||
var fullSubdomain = subdomainName + ".is-a.dev";
|
||||
var domainData = domains[subdomain].data;
|
||||
var proxyState = domainData.proxied ? { cloudflare_proxy: "on" } : { cloudflare_proxy: "off" };
|
||||
|
||||
// Handle A records
|
||||
if (domainData.record.A) {
|
||||
for (var a in domainData.record.A) {
|
||||
commit.push(A(subdomainName, IP(domainData.record.A[a]), proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle AAAA records
|
||||
if (domainData.record.AAAA) {
|
||||
for (var aaaa in domainData.record.AAAA) {
|
||||
commit.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle CAA records
|
||||
if (domainData.record.CAA) {
|
||||
for (var caa in domainData.record.CAA) {
|
||||
var caaRecord = domainData.record.CAA[caa];
|
||||
commit.push(CAA(subdomainName, caaRecord.flags, caaRecord.tag, caaRecord.value));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle CNAME records
|
||||
if (domainData.record.CNAME) {
|
||||
// Allow CNAME record on root
|
||||
if (subdomainName === "@") {
|
||||
commit.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState));
|
||||
} else {
|
||||
commit.push(CNAME(subdomainName, domainData.record.CNAME + ".", proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle MX records
|
||||
if (domainData.record.MX) {
|
||||
for (var mx in domainData.record.MX) {
|
||||
commit.push(MX(subdomainName, 10, domainData.record.MX[mx] + "."));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle NS records
|
||||
if (domainData.record.NS) {
|
||||
for (var ns in domainData.record.NS) {
|
||||
commit.push(NS(subdomainName, domainData.record.NS[ns] + "."));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle SRV records
|
||||
if (domainData.record.SRV) {
|
||||
for (var srv in domainData.record.SRV) {
|
||||
var srvRecord = domainData.record.SRV[srv];
|
||||
commit.push(SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + "."));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle TXT records
|
||||
if (domainData.record.TXT) {
|
||||
if (Array.isArray(domainData.record.TXT)) {
|
||||
for (var txt in domainData.record.TXT) {
|
||||
commit.push(TXT(subdomainName, domainData.record.TXT[txt]));
|
||||
}
|
||||
} else {
|
||||
commit.push(TXT(subdomainName, domainData.record.TXT));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle URL records
|
||||
if (domainData.record.URL) {
|
||||
commit.push(
|
||||
A(subdomainName, "192.0.2.1", { cloudflare_proxy: "on" })
|
||||
// CF_SINGLE_REDIRECT(fullSubdomain, 302, 'http.host eq "' + fullSubdomain + '"', 'concat("' + domainData.record.URL + '", "")')
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
// Exceptions
|
||||
// is-a.dev
|
||||
commit.push(IGNORE("@", "MX"));
|
||||
commit.push(IGNORE("@", "TXT"));
|
||||
// *.is-a.dev
|
||||
commit.push(IGNORE("\\*"));
|
||||
// _acme-challenge.is-a.dev
|
||||
commit.push(IGNORE("_acme-challenge", "TXT"));
|
||||
// _dmarc.is-a.dev
|
||||
commit.push(IGNORE("_dmarc", "TXT"));
|
||||
// ns1.is-a.dev
|
||||
commit.push(IGNORE("ns1", "A"));
|
||||
commit.push(IGNORE("ns1", "AAAA"));
|
||||
// ns2.is-a.dev
|
||||
commit.push(IGNORE("ns2", "A"));
|
||||
commit.push(IGNORE("ns2", "AAAA"));
|
||||
// ns3.is-a.dev
|
||||
commit.push(IGNORE("ns3", "A"));
|
||||
commit.push(IGNORE("ns3", "AAAA"));
|
||||
// ns4.is-a.dev
|
||||
commit.push(IGNORE("ns4", "A"));
|
||||
commit.push(IGNORE("ns4", "AAAA"));
|
||||
|
||||
// Commit all DNS records
|
||||
D("is-a.dev", NewRegistrar("none"), DnsProvider(NewDnsProvider("cloudflare", { "manage_single_redirects": true })), commit);
|
||||
@@ -1,8 +0,0 @@
|
||||
version: '3'
|
||||
services:
|
||||
dev:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
volumes:
|
||||
- ./:/opt/app/code
|
||||
+1
-1
@@ -4,6 +4,6 @@
|
||||
"email": "rayrsn@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://rayr.link"
|
||||
"URL": "https://rayrsn.me/"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,6 +4,6 @@
|
||||
"email": "rayrsn@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://rayr.link"
|
||||
"URL": "https://rayrsn.me/"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "chuckchicken100",
|
||||
"email": "",
|
||||
"discord": "815256243786350594",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": ["103.97.126.29"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"description": "Personal Portfolio Website",
|
||||
"repo": "https://github.com/0v90/0v90.github.io",
|
||||
"owner": {
|
||||
"username": "0v90",
|
||||
"discord": "651519394673065989",
|
||||
"email": ""
|
||||
|
||||
},
|
||||
|
||||
"record": {
|
||||
"A": [
|
||||
"185.199.108.153",
|
||||
"185.199.109.153",
|
||||
"185.199.110.153",
|
||||
"185.199.111.153"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "SkyExploreWasTaken",
|
||||
"email": "",
|
||||
"discord": "1049263707177353247",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "edge.redirect.pizza"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0x1026",
|
||||
"email": "me@hugovidafe.dev"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://hugovidafe.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0xzer0x",
|
||||
"email": "youssefessamasu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"MX": [
|
||||
"mx1.forwardemail.net",
|
||||
"mx2.forwardemail.net"
|
||||
],
|
||||
"TXT": [
|
||||
"forward-email=youssefessamasu@gmail.com",
|
||||
"v=spf1 a include:spf.forwardemail.net include:_spf.google.com -all"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Yunexiz",
|
||||
"discord": "1040303561847881729",
|
||||
"email": ""
|
||||
},
|
||||
"record": {
|
||||
"A": ["185.199.109.153","185.199.108.153","185.199.110.153","185.199.111.153"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "1.is-a.dev",
|
||||
"owner": {
|
||||
"username": "i-am-is-a-dev",
|
||||
"email": "lx737456@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["89.106.200.1"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"description": "Email thingy",
|
||||
"owner": {
|
||||
"username": "QuinceTart10",
|
||||
"email": "",
|
||||
"discord": "862644161156218891"
|
||||
},
|
||||
"record": {
|
||||
"MX": [
|
||||
"a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
|
||||
"a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
|
||||
],
|
||||
"TXT": "v=spf1 include:spf.seznam.cz ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PogMaster9001",
|
||||
"email": "",
|
||||
"discord": "1190052608346435597"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "projectdevs.net"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal Website",
|
||||
"repo": "https://github.com/navandarnidhi/navandarnidhi.github.io",
|
||||
"owner": {
|
||||
"username": "navandarnidhi",
|
||||
"email": "nidhi.navandar@mescoeorg.onmicrsoft.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "navandarnidhi.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "200anxy",
|
||||
"email": "aadarshnair.p@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "200anxy.github.io"
|
||||
}
|
||||
"owner": {
|
||||
"username": "200anxy",
|
||||
"email": "aadarshnair.p@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "200anxy.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "21Z",
|
||||
"email": "",
|
||||
"discord": "780356848737058857"
|
||||
},
|
||||
"record": {
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
"mx2.improvmx.com"
|
||||
],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "2giosangmitom",
|
||||
"email": "yeuxacucodon.dev@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "2giosangmitom.github.io"
|
||||
}
|
||||
"owner": {
|
||||
"username": "2giosangmitom",
|
||||
"email": "yeuxacucodon.dev@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "2giosangmitom.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "4-m4t",
|
||||
"email": "e_serhat@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MysticalPvE",
|
||||
"email": "",
|
||||
"discord": "1229782675678826496",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.K-aVOrk2T-4Wp0VAaLx8W9V1QsToSmJJmlK-jJlb-Zzx6kpwvGMlemfsdLH4XQSksUlk6PD51_Mx7d83HzqgqiYb6zwx2-iSgfEn6fUKWlF09k1fWne_wS0sSjYiz6GluI6qNs9hh9buq19iGPVz9L16KWCvL0xnjQxBjVCiR0Q69p9Vaw3_5b7VEUnKQvomYkdbovZ2p10hzGmnrwtKkA0gboxJnqshcV-eUzav7LZJZOwbzoVPEODqdLbqCOlTBP4IJXNjkwKSNKsnQ6BorPydgmXNv4hCsuga3JKg2M438dLG9NK-H8U8Q4GHLk7sx797WY1EJ8AChvgojqX1Ag.OMEl4nD9pPVbIku9jIFcpA.qV3yol4qlMITrJUHTUtYxGLd7ARn8msshNlY6uMWmf8ZeIe7_RQdG-JV1f-rDEZLZX_FcDsE7c8kpOjy9ulW1uiFZW9lw-f0LEqywyLeZ94.K1K5YV-DWV_hIlL8X9l8jQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "4217803c2e3e461b9f07eb8be0320a79"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MullerIsabella",
|
||||
"email": "AlpineDreamer92@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "suisse.onrender.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "fiftys7vencode",
|
||||
"email": "potatogamer34579@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["185.199.108.153"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "shockbs",
|
||||
"discord": "880084860327313459"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://shockbs.is-a.dev/"
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"owner":{"username":"maskduck","email":"","discord":"716134528409665586"},"record":{"CNAME":"maskduck.pages.dev"}}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "7.is.a.dev why not",
|
||||
"owner": {
|
||||
"username": "JustDeveloper1",
|
||||
"email": "justdeveloper@juststudio.is-a.dev",
|
||||
"discord": "1117482901353812088"
|
||||
},
|
||||
"record": {
|
||||
"A": ["89.106.200.1"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "8-bittt",
|
||||
"email": "8botted@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://replit.com/@8bittt?path="
|
||||
}
|
||||
}
|
||||
+3
-5
@@ -1,11 +1,9 @@
|
||||
{
|
||||
"description": "The root domain for is-a.dev website",
|
||||
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
|
||||
"owner": {
|
||||
"username": "phenax",
|
||||
"email": "phenax5@gmail.com"
|
||||
"username": "is-a-dev",
|
||||
"email": ""
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
"CNAME": "is-a-dev.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"email": "",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "af252befb545b3b27e96b5b9._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "JustStudio.API",
|
||||
"owner": {
|
||||
"username": "JustDeveloper1",
|
||||
"email": "support@juststudio.is-a.dev",
|
||||
"discord": "1117482901353812088"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ec675496b91489e24d221965._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"email": "",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "fe4cfa72d5862865fb2759c8._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "denboy0123",
|
||||
"email": "pochtaproverka01@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": [
|
||||
"FZo9g0GqRYR-fhmWc1QzbycfV5UZIE4bwh42BI81NDQ",
|
||||
"V1N8tuJvEcUtltxMXLRvP0U1_jaAgsSJJ89MgyxpWUk"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Bananalolok",
|
||||
"email": "",
|
||||
"discord": "bananalol7678"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "77c60266e3d311053d5b2fe1._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "VaibhavSys",
|
||||
"email": "vaibhavsys@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"email": "",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "51de1eeaf31ce67a1c3f69aa._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RaafeyRaza",
|
||||
"email": "raafeyraza1@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dc6fbbae-3aba-4a5d-9741-4b7a386b9151.acmedns.infinityfree.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"email": "",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "e6797667cd820de372823eb4._acme.deno.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "catto24",
|
||||
"email": "catto24@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:whzff4s3db6taso3s43ylrou"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "octyn-yt",
|
||||
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=492dbadf8b48232a357717e9d54511826184e352"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AcronicalYT",
|
||||
"email": "acronicalbusiness@gmail.com",
|
||||
"discord": "627045949998497792"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b787b100fba1eaf9de455acb506e5f6fdcf1e829"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "octyn-yt",
|
||||
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Akatsuki2555",
|
||||
"email": "akatsuki2555@proton.me",
|
||||
"discord": "1226900455037075509"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=30962b6c5cdbbd4629fdf0da9d0bf4c717f065e9"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AKCord",
|
||||
"email": "shrestha.aeniv@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "akshtt-dev",
|
||||
"email": "maillegendop@gmail.com",
|
||||
"discord": "1056531806763102218"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aloramiaa",
|
||||
"email": "xaloramia@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "alpha@alpha.is-a.dev",
|
||||
"email": "",
|
||||
"Discord": "661121998830960651",
|
||||
"Twitter": "YouFoundAlpha",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "alvinsjoy",
|
||||
"email": "",
|
||||
"discord": "825382504353234954"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=2e0d11ef77e37336649b42cd76be7681008ac30a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "true1ann",
|
||||
"email": "true1ann@tutamail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Stef-00012",
|
||||
"email": "admin@stefdp.is-a.dev",
|
||||
"discord": "694986201739952229"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=e71ddcd3beca6bbd44125eb4d861d4cf28eed0c8"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ItzArman09",
|
||||
"email": "itz.armxn@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=508604a0381985579d65a0e9c8b241bc6186cc44"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ARVIN3108",
|
||||
"email": "31arvin08@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=f4de5717bd2c2b490973ead6cdd9a7c81d38fe5b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ashishagarwal2023",
|
||||
"email": "code.with.aasheesh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AXVIII3",
|
||||
"email": "anirbanrc2286@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=06feb5fa4fc1b28e67043c64664a49c5dfe9b614"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AzhamProdLive",
|
||||
"email": "websitedomain.regroup588@passinbox.com",
|
||||
"discord": "797534115935027271"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b3b9be236f1e61048cecc94f8e3e6a4accf9d6b5"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "bkmsstudio",
|
||||
"email": "mmini15354424@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=28e7384e869c06a1ca87f91b10fd14aefc7f4433"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "vornexx",
|
||||
"email": "ajay.ramnath@courvix.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9834c3a11e7647463c3f62cbbbb0aa0442f503f6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "B1ue-Dev",
|
||||
"email": "b1uedev@outlook.com",
|
||||
"twitter": "b1uedev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=17587955722bcb2745e20304b98cb5cbda716054"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "BrandgrandRealMe",
|
||||
"email": "brandon.lambe@skiff.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=5a46861f9c2b864210ab3d3ffdd61d09e9170650"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Caiden-P",
|
||||
"email": "iididhejejdj@gmail.com",
|
||||
"discord": "850820069310201896"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9edde4bc2a73469cb8653bf05ae22226397bc77a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "calamitywoah",
|
||||
"email": "krivojta@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=2cd3fcd551a8d871e135c5613dccb097d9abcb03"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gabrielasants",
|
||||
"email": "gabrielasantos030@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a755ef48b5344a0fb3b986db5b0e2304caced68c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "catto24",
|
||||
"email": "catto24@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=cb090910b5977bb43674000fab99c3a76492ac78"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ChaoticChaosTheGreat",
|
||||
"email": "ryan.ryanabraham@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd"
|
||||
}
|
||||
"owner": {
|
||||
"username": "ChaoticChaosTheGreat",
|
||||
"email": "ryan.ryanabraham@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "chikoiko",
|
||||
"email": "itsmezark05@gmail.com",
|
||||
"discord": "1152640014832902245"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=bcbc8ef1f361e6190ebf1ffb09b84800ac8cd341"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Ciao287",
|
||||
"email": "",
|
||||
"discord": "687333016921440317"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7033eb795b01d2b28ceb767f8e34a4dffa268406"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "theclyron",
|
||||
"email": "onenonlyclyron@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=08fd1efb158b657de5293ec643a8426a20a93ede"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CodeSuthar",
|
||||
"email": "AdityaSuthar13@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=c9d95514358feae443357e8366bfa224cb7709e1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "crischutu07",
|
||||
"email": "crischutu07owo@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=fffa03e2584e730d2c0166aaa6fe846542439b19"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "My base website. Very epik tbh 💥💥",
|
||||
"repo": "https://github.com/cupglassdev/cupglassdev.github.io",
|
||||
"owner": {
|
||||
"username": "cupglassdev",
|
||||
"email": "", "twitter":"https://x.com/cupglassdev",
|
||||
"lahelu":"https://lahelu.com/user/cupglassdev",
|
||||
"discord": "cupglassdev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1a7a67b133e464ce252912f15ae575f3a74b7c45"]
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CuteDog5695",
|
||||
"email": "cutedog5695@gmail.com",
|
||||
"discord": "cutedog5695",
|
||||
"email": "",
|
||||
"discord": "716306888492318790",
|
||||
"twitter": "cutedog5695"
|
||||
},
|
||||
"record": {
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "cuxdii",
|
||||
"email": "vihar2408@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=afaf5843216f288f6b9d6d2b06b66bcc396b0479"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Daamin909",
|
||||
"email": "ashai.daamin@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=bc215d4445233c4ff76582ad1b83c8b277c2713e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "daglaroglou",
|
||||
"email": "christos.daglaroglou@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=835bc23146b3e22366c53fc75b2e573d30f02730"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "LRxDarkDevil",
|
||||
"email": "",
|
||||
"discord": "707565643200724993",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Y3TZa4qDHPnsPvTI65DC4aNjRm5GeZ6p3QPMWkHzAJV3XmYPK88vXOcBjTIjdhl0WJq7y8VqaoAVMeRVrjK_7-tIR4T5xKm43wEv2YLyt5IKBIZR66UZ5CpeCxh_Lw_vENSdY0K2cJhWb7c99Ytc9-ZWfKOuo1NE5-ycNpFRNHzcMnqeeqK7kIjPTEDUuFoo_Gsb_cSvEcQi4CU7HGYVw_MCf-1zwGFrneBVvPOyhWF9y4ObJu1AE8lI0xPk-BYHRL2OP-xvU3qjHrf3J3PR1lC2JxXNZ90IevZ2smBYtXpKGRb3uww34XwF-cFX9R2QaXXO06gGrmsLM7-sYHyWMQ.Ci7-CteTV4_CkmZNn-XoKg.UtEZid919zv3RjoY9WD17nMUi7Q70Ab-fFhi9g8zd7AwLN-Zc7JpkEthG7_-V-gQupao7qYFD0paq-IaIlPt8jrCPUPTZGIcBmUH1mOG4Qk.ZhtLnN9ARZebAq0oP5uePA"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=8c77ed7246a59a97a79bd853da4df0d375f2558d"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Stef-00012",
|
||||
"email": "stefano.delprete.08@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=8fb11c7ecad141914be5cc41aa1b4569dcd14f6c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "DebtlessFlea",
|
||||
"email": "citizen.caption020@passfwd.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=ec2194e7089856af252f3cffdbc4378b193c4cd0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "dc domain connect",
|
||||
"repo": "https://github.com/devanshyadav2010/register",
|
||||
"owner": {
|
||||
"username": "devanshyadav2010",
|
||||
"email": "dev8adam576@gmail.com",
|
||||
"twitter": "devanshyadav"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=d14eedf95cd289bfd460f05eff5cca7a8a28d7f0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "drake-dot-o",
|
||||
"email": "",
|
||||
"discord": "197905102865039371",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mmPhx-ID9xqljgGC66-Zsd9EUwS4V3yi_xWUWAzQlcF42kfOFbW9SqczuiXOwuVXLyx5RaJoPCOhma2N_EgIcIxmi5zbPbW8u22M3-L0a3NRwLs0GHTs2JiCKyuKjQ-hxNqgY61oV2B_X3utIgMkG_oBgJp3F6EzN7Nawq-pSYAkhRRnhbcEFa0sQ7XQsTttoAszEZcJIORdxwdfDFfI91-Y5TJOudpT0Fd2LA8K0TSs8xcLO9uQKZwvoqiZQ4T-uEdIr54siJqzIyqKxgtMdcT_44xm6tabGT0F44K2X9Ns3hhj7VgXAxb3WRFjRdMIBqspRPs0kvqGgdEp9wNUlg.eC5L5l-_oNRn_fR_JaZQ9w.KyJyCZ9z-IvwVj1NWiY7aFa_7yOauoO-2i1L8pN60dqIafeVBdpt5mhI_6yiEZkxLsebFIZHX8YLhLRYiN3uXg7zm8E7sZveLzKwAZ6ARUE.gLvOaKt6jNjnsAk00eL4Bw"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=25c86cb259851742d4f9d6168db474328c6b27d0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "SRPVT",
|
||||
"email": "syedyaseeralirayan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7864dbaf534fd1fe06980cef458e294c317390ad"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "DuckySoLucky",
|
||||
"email": "robertkovac160@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7bb43942d51685c0980f38345bf6a13e4498157a"
|
||||
}
|
||||
"owner": {
|
||||
"username": "DuckySoLucky",
|
||||
"email": "robertkovac160@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7bb43942d51685c0980f38345bf6a13e4498157a"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Dwigoric",
|
||||
"email": "dwigoric@pm.me",
|
||||
"discord": "295391820744228867"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=0dbe5579faf14819c58607e423f955be71311f60"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"email": "",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.E52gF-yRvCrEPcTRHxMbPUqD3h9rFOcrEu7zeUC8-bcjtSOLrw7TwnWKn0ca_trDmDAf0Se7lxfbhmMwv06eCgrZn-fBgaYD3YeQ6rHlmL3L6WQgx16qhF-KdjyyPRGCdPmSfeoowR45AxY_48QLixoDzNIxWte8CUvJ_nCmC2NKhA84HRD8qudA0w7I0riwr9J7JCz1NLkGaGqLg_Oi4IDClom8nOhb3cB4w0BgK5umz0BmiXH5SibsfG7fkFJ4ETvQzzIrNH_w8TLkNRGv5hs3lSBEobx4Qe_BCq1KHuSHo-LmE-Aw74G96GgVHATECw0RW2sVyK3OnIOTZKzwDg.efXKzrCWSo9Ze3Xir-KhUg.PCY3rWSr7tGJsVM_wF5VKnRB2Tk2QKNKS6pZPJJH9XirQY7TJocpov1F0xZxI4mzll5FjRgP_DxsErWY-p3YqLDUSk5lJ7RywtFpfr4wsLOrjEEcwj_yYNAVphDqxsI3.OL1QnPKxsZtqZXbrhbnk2w"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=2812b2fbe8af8bd92dc2c1248d0d3a71a5b8555c"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "eryquicc",
|
||||
"email": "fathirzaidanmaulana@gmail.com",
|
||||
"discord": "629939924589608961"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7efcfd9b81fc26c7d20c998cbc23866c0d6bc407"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user