diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..bd45261db --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +To make our job easier, please spend time to review your application before submitting. + + + +- [ ] You're not using Vercel or Netlify. +- [ ] You have completed your website, there's no type of placeholder at the website. **This requirement can be raised if the domain you're registering is for emails** + - Link to website: +- [ ] The website is reachable. +- [ ] The CNAME record doesn't contain any slash. +- [ ] There's enough information at the `owner` field. + - You should have your email presented. If you don't want to share email, you can leave email an empty string (`""`) and add any other social such as Discord/Twitter/etc. + + + diff --git a/API.md b/API.md index 8df1015ce..c819ef1cb 100644 --- a/API.md +++ b/API.md @@ -1 +1 @@ -Moved to [./docs](./docs) +Moved to [docs](https://docs.is-a.dev) diff --git a/README.md b/README.md index f0655445b..2b1851165 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ ## How do I register? -* Fork this repository -* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev` -* [Read the docs](./docs) -* The PR will be reviewed and merged -* After merging, the changes will take effect within a day -* That's it! Done! Now go show off your cool `.is-a.dev` domain +* [Fork](https://github.com/is-a-dev/register/fork) this repository. +* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev`. +* [Read the docs](https://docs.is-a.dev). +* The PR will be reviewed and merged. +* After merging, the changes will take effect within a day! +* That's it! Done! Now go show off your cool `.is-a.dev` domain! @@ -40,10 +40,10 @@ You should also checkout - ## Uptime -![Uptime Robot ratio (30 days)](https://img.shields.io/uptimerobot/ratio/m787472645-ec25e3920c7af893a7c66f19?label=uptime%20-%20dns&style=for-the-badge) -![Uptime Robot ratio (30 days)](https://img.shields.io/uptimerobot/ratio/m787472617-240f4d61a5439a87becb2cf9?label=uptime%20-%20redirections&style=for-the-badge) +[![Uptime Robot ratio dns(30 days)](https://img.shields.io/uptimerobot/ratio/m787472645-ec25e3920c7af893a7c66f19?label=uptime%20-%20dns&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw) +[![Uptime Robot ratio redirect(30 days)](https://img.shields.io/uptimerobot/ratio/m787472617-240f4d61a5439a87becb2cf9?label=uptime%20-%20redirections&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw) -You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw) +You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw). diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index 554b0d71c..000000000 --- a/docs/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# How to register -You can read the [domains.json file api reference](./domains-json.md) for more information about the json file structure. - -### Websites hosted at -* [For github pages users](./hosted-at/github-pages.md) -* [For hashnode blogs](./hosted-at/hashnode.md) -* [For other services](./hosted-at/others.md) - -### Vercel & Netlify Note -You will encounter an SSL certificate issue when using Vercel and Netlify. Neither service will work with our domains. It is recommend to use [Github Pages](https://github.com/is-a-dev/register/blob/add-hosting-warning/docs/hosted-at/github-pages.md) or [Railway](https://railway.app/) instead. diff --git a/docs/domains-json.md b/docs/domains-json.md deleted file mode 100644 index c1f0c19e6..000000000 --- a/docs/domains-json.md +++ /dev/null @@ -1,113 +0,0 @@ -# Domains json file -The way you register your own domain name is through a pull request. -To register `my-domain.is-a.dev`, you need to create a `domains/my-domain.json` file - -### Filename -The file name must pass the following criteria - - -> NOTE: You can use `.` (dots) in your file name (for registering `blog.mysubdomain.is-a.dev`) but each of the following criteria must be valid for all part of your subdomain - -* Must be alpha-numeric in lowercase with dashes as seperators -* Must be more than 2 characters long -* Must have a `.json` file extension - - -The file needs to have the following fields - - -### owner (required) -You need to specify some information about yourself here. -This is so that you can be contacted if required. - -In the owner object, the fields `username` and `email` are required. You can however add more information in this object if you need. -```json -{ - "owner": { - "username": "github-username", - "email": "any@email" - } -} -``` - -If you don't wish to share your email address here, please share your twitter, discord or any other social media account. -```json -{ - "owner": { - "username": "github-username", - "email": "", - "twitter": "twitter-handle" - } -} -``` - - -### description -Describe your domain name and your usage. This is purely for documentation purpose and is optional. - - -### repo -This is a link to your website repository or your github account. This is purely for documentation purpose and is optional. - - -### record (required) -This is where you specify the DNS records you wish to use. - -The supported record types are: `CNAME`, `A`, `URL`, `MX` and `TXT` - -Here's a few different use cases for the given record types - - -* **CNAME** -CNAME must be a host name (Eg - `something.tld`). CNAME cannot be used in conjunction with any other record types. -```json -{ - "record": { - "CNAME": "username.github.io" - } -} -``` - -* **A record** -A record must be a list of ips -```json -{ - "record": { - "A": [ - "999.999.991.999", - "999.999.992.999", - "999.999.993.999", - "999.999.994.999" - ] - } -} -``` - -* **URL redirection** -```json -{ - "record": { - "URL": "https://my-other-website.com" - } -} -``` - -* **MX** -MX must be a list of host names -```json -{ - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } -} -``` - -* **TXT** -TXT can be any string value. **You can only have 1 TXT record.** -```json -{ - "record": { - "TXT": "hello world" - } -} -``` diff --git a/docs/hosted-at/github-pages.md b/docs/hosted-at/github-pages.md deleted file mode 100644 index 7806c0639..000000000 --- a/docs/hosted-at/github-pages.md +++ /dev/null @@ -1,28 +0,0 @@ -# For github pages - -### Creating a github pages repo -You can create a github pages website by creating a repo with the name `.github.io`. -For more information about github pages, please read through [their guide](https://guides.github.com/features/pages/). - - -### Domains file -Create a json file inside the `domains` directory (`domains/.json`) with the following contents -```json -{ - "description": "Add some description", - "repo": "https://github.com/github-username/github-username.github.io", - "owner": { - "username": "github-username", - "email": "any@email", - "twitter": "your-twitter-username" - }, - "record": { - "CNAME": ".github.io" - } -} -``` - -### Configuring your repo -* After the pull request is merged, you will see a 404 error on `your-domain.is-a.dev`. To fix this go to your github page repo's `Settings > Github pages > Custom domain` and add `your-domain.is-a.dev` in the given field -* Check the `Enforce HTTPS` checkbox below the custom domain input - diff --git a/docs/hosted-at/hashnode.md b/docs/hosted-at/hashnode.md deleted file mode 100644 index 20b2276c3..000000000 --- a/docs/hosted-at/hashnode.md +++ /dev/null @@ -1,27 +0,0 @@ -When you create your Hashnode blog, hashnode provides a free **yourdomain.hashnode.dev** subdomain for you. However, you can set up your own **.is-a.dev** subdomain. - -In this guide, you will learn how to accomplish this. - ---- - -1. Log in to your Hashnode account. - -2. Click on your **profile picture** at the bottom-left corner of the page on *desktop* screen or top-right corner on *mobile* screen. - -![Hashnode's Feed](https://cdn.hashnode.com/res/hashnode/image/upload/v1614932849541/cBNDGKXMj.png?auto=compress) - -3. Click on the **Blog Dashboard** option from the popup modal to access your blog's dashboard. - -![Hashnode's Feed](https://cdn.hashnode.com/res/hashnode/image/upload/v1614937218081/InvxVHXDy.png?auto=compress) - -4. Navigate to the **DOMAIN** tab and enter your domain without the **www** or **https://** prefix in the text field provided. Then click on the **Update** button to proceed. - -![Hashnode's Blog Domain Tab](https://cdn.hashnode.com/res/hashnode/image/upload/v1614937377176/0cwddAywO.png?auto=compress) - -5. Go To Your Fork Of The `is-a-dev/register` repo, edit your subdomain's JSON file, make sure you remove any old records, then add this: -```json -"CNAME": "hashnode.network" -``` - -Once Done, your hashnode blog is setup to use your subdomain, all you have to do is wait sometime for the DNS to propogate. These changes could take from 1 hour to around 48 hours, so please be patient, It'll most likely be ready within a hour. -Enjoy Your Hashnode Blog, With Your Sweet `.is-a.dev` Subdomain! **If You Need More Help:** please read this support article on hashnode support: https://support.hashnode.com/docs/mapping-domain/, this should help you more, if you need more help related to [Hashnode](https://hashnode.com), then please visit the [Hashnode Support Center](https://support.hashnode.com/). Remeber, is-a.dev has no links with hashnode, so please do not create issues on our github, saying that your hashnode blog is having issues, we simply will not respond to them. diff --git a/docs/hosted-at/others.md b/docs/hosted-at/others.md deleted file mode 100644 index 0d0c534e8..000000000 --- a/docs/hosted-at/others.md +++ /dev/null @@ -1,53 +0,0 @@ -# For other hosting services - -### Domains file -Create a json file inside the `domains` directory (`domains/.json`) with the following contents -```json -{ - "description": "Add some description", - "repo": "https://github.com/github-username", - "owner": { - "username": "github-username", - "email": "any@email" - }, - "record": {} -} -``` - -### Record -In your `record` key of the json file, you need to add one of the following - -* CNAME record -```json -{ - "record": { - "CNAME": "the-domain-you-own.com" - } -} -``` - -* A records -```json -{ - "record": { - "A": [ - "69.69.69.69", - "69.69.69.70" - ] - } -} -``` - -* URL redirection -```json -{ - "record": { - "URL": "https://your-website.com" - } -} -``` - -### Configuring your server -After the pull request is merged, **configure your server** (apache, nginx, whatever) to work with `.is-a.dev`. If you are unsure how to configure your server, you can create an issue for support. - -You should also, include `.is-a.dev` in your **ssl certificate** to get rid of certificate errors - diff --git a/docs/maintainers/pr-review.md b/docs/maintainers/pr-review.md deleted file mode 100644 index e3a871ac0..000000000 --- a/docs/maintainers/pr-review.md +++ /dev/null @@ -1,72 +0,0 @@ -# Reviewing pull requests -There are a few things you'll need to look out for when reviewing pull requests for domain registrations. This list is not exhaustive and will be updated. - ---- - -### CI errors -A lot of minor issues will be caught in the CI checks -* JSON parsing issues -* Schema issues - -If the CI is failing, tag the user and comment on the pr. - ---- - -### Contents of the website -We need to make sure that the contents being hosted via the record being registered is not used for malicious purposes. -To do this, we must try our best to verify the contents of website and if required ask some questions regarding the contents in the PR. - ---- - -### Invalid email/social link -A way to contact the user is important in case we need to inform the users of some changes to the project. -Confirm if the email looks valid or the social user name/link works. -The user should have either an email or a valid social link. - -❌ `"owner": { "username": "gh-username" }` is invalid as it doesn't contain an email or any social links - -❌ `"email": "28372878+user-name@users.noreply.github.com"` is invalid as the email cannot be used - -✅ `"owner": { "username": "phenax", "twitter": "twitter-username" }` is valid as it contains a social link - -✅ `"owner": { "username": "phenax", "email": "email@gmail.com" }` is valid as it contains an email - ---- - -### Invalid CNAME -CNAME has to be a hostname. Something like `example.com`. - -❌ `http://example.com` is invalid as it contains a protocol `https://` - -❌ `example.com/some/path` is invalid as it contains the path name `/some/path` - -✅ `example.com` is valid as it is the hostname of the website - ---- - -### Invalid A -A record has to be an array of ips. - -❌ `"A": "211.211.211.211"` is invalid as it must be an array - -❌ `"A": ["example.com"]` is invalid as it is not an ip address - -✅ `"A": ["211.211.211.211", "211.211.211.212"]` is valid as it is an array of ips - ---- - -### Invalid URL -The URL must have a protocol (`http://` or `https://`) and must be something like `https://example.com` or `https://example.com/some/path`. - -❌ `example.com` is invalid as it doesn't contain the protocol - -✅ `https://example.com/some/path` is valid as it contains a protocol - ---- - -### Only one record type -Earlier, is-a-dev used to allow for handling https redirections along with CNAME but the way we handle requests has changed since then. -This is why a record file can only contain one record type. Either `CNAME` or `A` or `URL`. - -❌ `"CNAME": "example.com", "URL": "https://something.com"` is invalid as it should only contain one type of record, either CNAME or URL. - diff --git a/docs/maintainers/publishing-records.md b/docs/maintainers/publishing-records.md deleted file mode 100644 index 2c363e8a1..000000000 --- a/docs/maintainers/publishing-records.md +++ /dev/null @@ -1,11 +0,0 @@ -# Publishing records -> NOTE: This is only for maintainers with publishing access - -Currently, the records are published using a manual github actions workflow. -When all the PR's are merged and ready, go to `Actions > Publish records` and click on the `Run workflow` button to publish the merged records. - - - -Sometimes it may log an error message while publishing saying some record(s) couldn't be published. -Usually, the cause is related to some conflict while deleting and re-publishing. -In those situations, running the workflow again will fix the issues. diff --git a/domains/@.json b/domains/@.json index 36cd14e7b..c5ab89f8f 100644 --- a/domains/@.json +++ b/domains/@.json @@ -6,6 +6,7 @@ "email": "phenax5@gmail.com" }, "record": { - "URL": "http://www.is-a.dev" + "URL": "http://www.is-a.dev", + "TXT": "google-site-verification=D3irdQ7pd-lyVSPbjEJEAWILcploozBksfNWNuqKd9U" } } diff --git a/domains/aakash.json b/domains/aakash.json index dfb64f0c5..21a9add4f 100644 --- a/domains/aakash.json +++ b/domains/aakash.json @@ -1,7 +1,7 @@ { "owner": { "username": "Shinyzenith", - "email": "xelphlinux@gmail.com" + "email": "aakashsensharma@gmail.com" }, "record": { "CNAME": "shinyzenith.github.io" diff --git a/domains/abdullah.json b/domains/abdullah.json new file mode 100644 index 000000000..a39ae9040 --- /dev/null +++ b/domains/abdullah.json @@ -0,0 +1,11 @@ + +{ + "owner": { + "username": "adistar964", + "email": "adistar964@gmail.com" + }, + "description":"this is for my personal website made.", + "record": { + "CNAME": "adistar964.github.io" + } +} diff --git a/domains/abhint.json b/domains/abhint.json new file mode 100644 index 000000000..d9e6cc780 --- /dev/null +++ b/domains/abhint.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio written in HTML and JS", + "repo": "https://github.com/abhint/abhint.github.io", + "owner": { + "username": "abhint", + "email": "notifyabhijith@gmail.com", + "twitter": "abhint6" + }, + "record": { + "CNAME": "abhint.github.io" + } +} diff --git a/domains/abku.json b/domains/abku.json deleted file mode 100644 index c6fcaf8d8..000000000 --- a/domains/abku.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Abku personal website.", - "repo": "https://github.com", - "owner": { - "username": "Abku", - "email": "abku@abku.xyz" - }, - "record": { - "URL": "https://abku.xyz" - } - } \ No newline at end of file diff --git a/domains/abysmal.json b/domains/abysmal.json new file mode 100644 index 000000000..dd0a9fb1d --- /dev/null +++ b/domains/abysmal.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/abysmal26/abysmal26.github.io", + "owner": { + "username": "abysmal26", + "email": "abysmal26@tuta.io", + "twitter": "abysmal26" + }, + "record": { + "CNAME": "abysmal26.github.io" + } +} diff --git a/domains/agam778.json b/domains/agam778.json index 14b7df04b..3a41fe69b 100644 --- a/domains/agam778.json +++ b/domains/agam778.json @@ -6,6 +6,6 @@ "email": "agam778@zohomail.in" }, "record": { - "CNAME": "agamsblog.xyz" + "CNAME": "agamsblog.pages.dev" } } diff --git a/domains/ahysa.andgyk.json b/domains/ahysa.andgyk.json new file mode 100644 index 000000000..b24425d08 --- /dev/null +++ b/domains/ahysa.andgyk.json @@ -0,0 +1,11 @@ +{ + "description": "Ahysa Discord bot website", + "repo": "https://github.com/andgyk/ahysa", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "ahysa.github.io" + } +} diff --git a/domains/aleks.json b/domains/aleks.json new file mode 100644 index 000000000..9ee4c832c --- /dev/null +++ b/domains/aleks.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ConnorDoesDev", + "email": "connor@cstudios.gay", + "discord": "Connor!#0800" + }, + "description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.", + "record": { + "CNAME": "connordoesdev.github.io" + } +} diff --git a/domains/alpha.json b/domains/alpha.json deleted file mode 100644 index 207dfbc41..000000000 --- a/domains/alpha.json +++ /dev/null @@ -1,22 +0,0 @@ -{ -"repo": "https://github.com/YouFoundAlpha/youfoundalpha.github.io", - "owner": { - "username": "YouFoundAlpha", - "email": "", - "twitter": "YouFoundAlpha", - "discord": "YouFoundAlpha#5372" - }, - "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" - } -} diff --git a/domains/amjad.json b/domains/amjad.json index 09cc7290f..b17b0a877 100644 --- a/domains/amjad.json +++ b/domains/amjad.json @@ -1,10 +1,11 @@ { + "repo": "https://github.com/amjad-ah/amjad-ah.github.io", "owner": { "username": "amjad-ah", "email": "amjad_ah_@hotmail.com", "tiwtter": "amjad_ah_" }, "record": { - "CNAME": "hashnode.network" + "CNAME": "amjad-ah.github.io" } } diff --git a/domains/amuffin.json b/domains/amuffin.json new file mode 100644 index 000000000..4d0538eed --- /dev/null +++ b/domains/amuffin.json @@ -0,0 +1,11 @@ +{ + "description": "amuffins website", + "repo": "https://github.com/amagicmuffin/amagicmuffin.github.io", + "owner": { + "username": "amagicmuffin", + "email": "2014wcheng@gmail.com" + }, + "record": { + "CNAME": "amagicmuffin.github.io" + } +} diff --git a/domains/amy.json b/domains/amy.json new file mode 100644 index 000000000..8d5d0b02e --- /dev/null +++ b/domains/amy.json @@ -0,0 +1,11 @@ +{ + "description": "Amy's is-a-dev domain", + "repo": "https://github.com/nullishamy/nullishamy.github.io", + "owner": { + "username": "nullishamy", + "email": "amycodes@null.net" + }, + "record": { + "CNAME": "nullishamy.github.io" + } +} diff --git a/domains/andgyk.json b/domains/andgyk.json new file mode 100644 index 000000000..8eb363e5e --- /dev/null +++ b/domains/andgyk.json @@ -0,0 +1,11 @@ +{ + "description": "andgyk website", + "repo": "https://github.com/andgyk/andgyk.github.io", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "andgyk.github.io" + } +} diff --git a/domains/annihilatorrrr.json b/domains/annihilatorrrr.json new file mode 100644 index 000000000..600f87a54 --- /dev/null +++ b/domains/annihilatorrrr.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io", + "description": "My personal website.", + "owner": { + "username": "annihilatorrrr", + "email": "annihilatorspark@gmail.com", + "telegram": "annihilatorrrr" + }, + "record": { + "CNAME": "annihilatorrrr.github.io" + } +} diff --git a/domains/arman.json b/domains/arman.json index 3c8e38ce1..618155de2 100644 --- a/domains/arman.json +++ b/domains/arman.json @@ -6,6 +6,6 @@ "email": "contact@mail.arman.is-a.dev" }, "record": { - "CNAME": "itzarman09.github.io" + "A": ["89.106.200.1"] } } diff --git a/domains/aspect404.json b/domains/aspect404.json new file mode 100644 index 000000000..948864725 --- /dev/null +++ b/domains/aspect404.json @@ -0,0 +1,12 @@ +{ + "description": "Aspect404_'s Website", + "owner": { + "username": "Aspect-404", + "email": "newaspectdevelopment@gmail.com", + "discord": "807361766572818484", + "twitter": "Aspect404_" + }, + "record": { + "CNAME": "e070f94f-3589-4c49-ac40-baa97dea6ccd.id.repl.co" + } +} diff --git a/domains/auth.json b/domains/auth.json new file mode 100644 index 000000000..36646103a --- /dev/null +++ b/domains/auth.json @@ -0,0 +1,10 @@ + { + "owner": { + "username": "@is-a-dev/maintainers", + "email": "mahir@molai.dev" + }, + "record": { + "A": ["199.36.158.100"] + } + } + diff --git a/domains/bad.boy.json b/domains/bad.boy.json index e5c47f7b6..3a42caf58 100644 --- a/domains/bad.boy.json +++ b/domains/bad.boy.json @@ -5,6 +5,6 @@ "email": "contact@mail.badboy.is-a.dev" }, "record": { - "CNAME": "a.redirect.pizza" + "URL": "https://badboy.is-a.dev" } } diff --git a/domains/ball.mousemoosz.json b/domains/ball.mousemoosz.json new file mode 100644 index 000000000..48cbc4a07 --- /dev/null +++ b/domains/ball.mousemoosz.json @@ -0,0 +1,10 @@ +{ + "description": "The documentation website for Ball discord bot.", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "CNAME": "mousemoosz.github.io" + } +} diff --git a/domains/batema.json b/domains/batema.json new file mode 100644 index 000000000..2e9225f58 --- /dev/null +++ b/domains/batema.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lukas-batema", + "email": "lukasbatema@gmail.com" + }, + "record": { + "URL": "https://batemadevelopment.com/" + } +} diff --git a/domains/bee.json b/domains/bee.json new file mode 100644 index 000000000..ce0fa62ed --- /dev/null +++ b/domains/bee.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "padlocks", + "email": "", + "twitter": "WeDoBeeVibing", + "discord": "bee!#0001" + }, + "description": "Commission website and links to my social medias.", + "record": { + "CNAME": "enbee.carrd.co" + } +} diff --git a/domains/blast.json b/domains/blast.json new file mode 100644 index 000000000..d83a94be7 --- /dev/null +++ b/domains/blast.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ReBlast", + "email": "", + "discord": "Blast#9400" + }, + "description": "Personal website with links to my social medias, will probably add portfolio", + "record": { + "CNAME": "reblast.github.io" + } +} diff --git a/domains/blog.alpha.json b/domains/blog.alpha.json deleted file mode 100644 index e4325163f..000000000 --- a/domains/blog.alpha.json +++ /dev/null @@ -1,12 +0,0 @@ -{ -"repo": "https://github.com/YouFoundAlpha/blog", - "owner": { - "username": "YouFoundAlpha", - "email": "", - "twitter": "YouFoundAlpha", - "discord": "YouFoundAlpha#5372" - }, - "record": { -"CNAME": "youfoundalpha.github.io" - } -} diff --git a/domains/calculator.notaperson535.json b/domains/calculator.notaperson535.json new file mode 100644 index 000000000..6ac8d89c9 --- /dev/null +++ b/domains/calculator.notaperson535.json @@ -0,0 +1,11 @@ +{ + "description": "My modern calculator", + "repo": "https://github.com/notAperson535/moderncalculator", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } +} diff --git a/domains/catsarecoo.json b/domains/catsarecoo.json new file mode 100644 index 000000000..c1b17babe --- /dev/null +++ b/domains/catsarecoo.json @@ -0,0 +1,11 @@ +{ + "description": "Invites Bot Site", + "repo": "https://catsarecoo.github.io/", + "owner": { + "username": "catsarecoo", + "email": "twistedpandora91@gmail.com" + }, + "record": { + "CNAME": "catsarecoo.github.io" + } +} diff --git a/domains/cb.json b/domains/cb.json new file mode 100644 index 000000000..2438155ed --- /dev/null +++ b/domains/cb.json @@ -0,0 +1,10 @@ +{ + "description": "Coffeebank", + "owner": { + "username": "coffeebank", + "email": "coffeebank-is-a-dev@catdev.anonaddy.com" + }, + "record": { + "URL": "https://coffeebank.github.io" + } +} diff --git a/domains/cdn.alpha.json b/domains/cdn.alpha.json deleted file mode 100644 index df92732a6..000000000 --- a/domains/cdn.alpha.json +++ /dev/null @@ -1,12 +0,0 @@ -{ -"repo": "https://github.com/YouFoundAlpha/cdn", - "owner": { - "username": "YouFoundAlpha", - "email": "", - "twitter": "YouFoundAlpha", - "discord": "YouFoundAlpha#5372" - }, - "record": { -"CNAME": "youfoundalpha.github.io" - } -} diff --git a/domains/changliu.json b/domains/changliu.json new file mode 100644 index 000000000..2114b6e95 --- /dev/null +++ b/domains/changliu.json @@ -0,0 +1,12 @@ +{ + "description": "Chang Liu's Personal Website", + "repo": "https://github.com/changbobbyliu/changbobbyliu.github.io", + "owner": { + "username": "changbobbyliu", + "email": "changbobbyliu@gmail.com", + "twitter": "changliuisadev" + }, + "record": { + "CNAME": "changbobbyliu.github.io" + } +} diff --git a/domains/chat-with.sx9.json b/domains/chat-with.sx9.json index ae54b7571..9fc0ab82d 100644 --- a/domains/chat-with.sx9.json +++ b/domains/chat-with.sx9.json @@ -1,14 +1,10 @@ -{ - "description": "SX's Discord Server", - "repo": "https://sx-9.github.io/sx-discord-redirect", - "owner": { - "username": "SX-9", - "twitter": "SX_Discord", - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com", - "note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me" - }, - "record": { - "CNAME": "sx-9.github.io" - } -} + { + "owner": { + "username": "SX-9", + "email": "satriakrach@gmail.com" + }, + "record": { + "CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co" + } + } + diff --git a/domains/chloe.json b/domains/chloe.json new file mode 100644 index 000000000..caaae9058 --- /dev/null +++ b/domains/chloe.json @@ -0,0 +1,12 @@ +{ + "description": "Chloe's is-a-dev domain", + "repo": "https://github.com/chlomne/chlomne.github.io", + "owner": { + "username": "chlomne", + "email": "", + "discord": "Saphixa#7272" + }, + "record": { + "CNAME": "chlomne.github.io" + } +} \ No newline at end of file diff --git a/domains/cindy.json b/domains/cindy.json new file mode 100644 index 000000000..62562d874 --- /dev/null +++ b/domains/cindy.json @@ -0,0 +1,12 @@ +{ + "description": "portefolio website", + "repo": "https://github.com/cindynatorella/cindynatorella.github.io", + "owner": { + "username": "cindynatorella", + "email": "cindy.e.roullet@gmail.com" + + }, + "record": { + "CNAME": "cindynatorella.github.io" + } + } \ No newline at end of file diff --git a/domains/dainfloop.json b/domains/dainfloop.json new file mode 100644 index 000000000..0d83f0b1f --- /dev/null +++ b/domains/dainfloop.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "DaInfLoop", + "email": "backupharoongames100@gmail.com" + }, + + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/deliable.json b/domains/deliable.json new file mode 100644 index 000000000..86994bae4 --- /dev/null +++ b/domains/deliable.json @@ -0,0 +1,10 @@ +{ + "description": "hi! i am deliable, a developer. i love minecraft.", + "owner": { + "username": "Deliable", + "email": "rbstsoul@gmail.com" + }, + "record": { + "CNAME": "5e125b8d47-hosting.gitbook.io" + } +} diff --git a/domains/dheirya.json b/domains/dheirya.json new file mode 100644 index 000000000..f86848c55 --- /dev/null +++ b/domains/dheirya.json @@ -0,0 +1,12 @@ +{ + "description": "An awesome portfolio site for Dheirya Tyagi", + "repo": "https://github.com/Dheirya/dheiryaweb", + "owner": { + "username": "Dheirya", + "email": "mail@socialrumbles.com", + "twitter": "fellow_doge" + }, + "record": { + "CNAME": "dheirya.pages.dev" + } +} diff --git a/domains/dib.json b/domains/dib.json index db99c50ae..1854fa38a 100644 --- a/domains/dib.json +++ b/domains/dib.json @@ -7,6 +7,7 @@ "twitter": "DEV_DIBSTER" }, "record": { - "A": ["192.95.42.74"] + "A": ["192.95.42.74"], + "TXT": "zoho-verification=zb87142129.zmverify.zoho.eu" } } diff --git a/domains/divyam.json b/domains/divyam.json new file mode 100644 index 000000000..bc6693301 --- /dev/null +++ b/domains/divyam.json @@ -0,0 +1,11 @@ +{ + "description": "Divyam's personal website", + "repo": "https://github.com/DivyamAhuja/divyamahuja.github.io", + "owner": { + "username": "DivyamAhuja", + "email": "ahujadivyam@gmail.com" + }, + "record": { + "CNAME": "divyamahuja.github.io" + } +} diff --git a/domains/docs.json b/domains/docs.json new file mode 100644 index 000000000..a622eac6a --- /dev/null +++ b/domains/docs.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation website for is-a-dev/register", + "repo": "MouseMoosz/is-a-dev-docs", + "owner": { + "username": "@is-a-dev/maintainers", + "email": "mahir@molai.dev" + }, + "record": { + "CNAME": "mousemoosz.github.io" + } +} diff --git a/domains/donkaos.json b/domains/donkaos.json new file mode 100644 index 000000000..b3fabe52f --- /dev/null +++ b/domains/donkaos.json @@ -0,0 +1,11 @@ +{ + "description": "Donkas's personal developer website", + "repo": "https://github.com/donkaos501", + "owner": { + "username": "Donkaos", + "email": "donkaos501@outlook.com" + }, + "record": { + "CNAME": "is-a.dev.donkaos.de" + } +} diff --git a/domains/dunkan.json b/domains/dunkan.json new file mode 100644 index 000000000..d33c932a2 --- /dev/null +++ b/domains/dunkan.json @@ -0,0 +1,11 @@ +{ + "description": "Dunkan", + "owner": { + "username": "dcdunkan", + "email": "", + "twitter": "dcdunkan" + }, + "record": { + "URL": "https://github.com/dcdunkan" + } +} diff --git a/domains/emofy.abku.json b/domains/emofy.abku.json new file mode 100644 index 000000000..3307b3411 --- /dev/null +++ b/domains/emofy.abku.json @@ -0,0 +1,10 @@ +{ + "description": "emofy website", + "owner": { + "username": "abkux", + "email": "abku@abku.xyz" + }, + "record": { + "CNAME": "abkux.github.io" + } +} diff --git a/domains/ericthomas.json b/domains/ericthomas.json new file mode 100644 index 000000000..655a0aa7b --- /dev/null +++ b/domains/ericthomas.json @@ -0,0 +1,11 @@ +{ + "description": "Eric Thomas' Portfolio", + "repo": "https://github.com/ericthomasca", + "owner": { + "username": "ericthomasca", + "email": "eric@ericthomas.ca" + }, + "record": { + "URL": "https://ericthomas.ca" + } +} diff --git a/domains/ethxrnity.json b/domains/ethxrnity.json new file mode 100644 index 000000000..1212ebfb0 --- /dev/null +++ b/domains/ethxrnity.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/ethxrnity/ethxrnity.github.io", + "owner": { + "username": "ethxrnity", + "email": "ethxrnity@gmail.com", + "twitter": "ethxrnity" + }, + "record": { + "CNAME": "ethxrnity.github.io" + } +} diff --git a/domains/fallen.json b/domains/fallen.json index 452e7453a..e6de3786b 100644 --- a/domains/fallen.json +++ b/domains/fallen.json @@ -1,12 +1,12 @@ { - "description": "Personal site and portfolio.", - "repo": "https://github.com/ThingsOfFallen/Website", + "description": "GitHub Profile redirect.", + "repo": "https://github.com/TheFallenSpirit/TheFallenSpirit", "owner": { "username": "TheFallenSpirit", "email": "thefallenspirit@outlook.com", "twitter": "@FallenCodes" }, "record": { - "A": ["198.58.110.227"] + "URL": "https://github.com/TheFallenSpirit" } } diff --git a/domains/fayasnoushad.json b/domains/fayasnoushad.json new file mode 100644 index 000000000..5aae04145 --- /dev/null +++ b/domains/fayasnoushad.json @@ -0,0 +1,12 @@ +{ + "description": "My personal site", + "repo": "https://github.com/FayasNoushad/fayasnoushad.github.io", + "owner": { + "username": "FayasNoushad", + "email": "", + "twitter": "FayasNoushad" + }, + "record": { + "CNAME": "FayasNoushad.github.io" + } +} diff --git a/domains/florian.json b/domains/florian.json new file mode 100644 index 000000000..0f8d3ab37 --- /dev/null +++ b/domains/florian.json @@ -0,0 +1,12 @@ +{ + "description": "Hey! I'm Florian", + "repo": "https://github.com/florianheysen/heysen.fr", + "owner": { + "username": "florianheysen", + "email": "florian.heysen@gmail.com", + "twitter": "florianheysen" + }, + "record": { + "CNAME": "heysen.fr" + } +} diff --git a/domains/frankie.json b/domains/frankie.json deleted file mode 100644 index 069e74a14..000000000 --- a/domains/frankie.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Now that's a spicy 404 page!", - "repo": "https://github.com/frankie-tech/frankie-tech.github.io", - "owner": { - "username": "frankie-tech", - "email": "", - "twitter": "this_frankie" - }, - "record": { - "CNAME": "frankie-tech.github.io" - } -} diff --git a/domains/frd.json b/domains/frd.json new file mode 100644 index 000000000..4bc729000 --- /dev/null +++ b/domains/frd.json @@ -0,0 +1,12 @@ +{ + "description": "frd.is-a.dev.", + "repo": "https://github.com/superXdev/portfolio-next", + "owner": { + "username": "superXdev", + "email": "fikrizhanking@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=frd.is-a.dev,e04ccfeb28b2ba8ec702", + "URL": "https://fikri.vercel.app" + } +} diff --git a/domains/git.maskduck.json b/domains/git.maskduck.json index 422bc24fc..f93d4f10e 100644 --- a/domains/git.maskduck.json +++ b/domains/git.maskduck.json @@ -6,6 +6,6 @@ "discord": "MaskDuck#7325" }, "record": { - "CNAME": "a.redirect.pizza" + "CNAME": "edge.redirect.pizza" } } diff --git a/domains/hardik-chandan.json b/domains/hardik-chandan.json new file mode 100644 index 000000000..a74b2cc5e --- /dev/null +++ b/domains/hardik-chandan.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/hardik-chandan/hardik-chandan.github.io", + "owner": { + "username": "hardik-chandan", + "email": "hardikchandan4231@gmail.com" + }, + "record": { + "CNAME": "hardik-chandan.github.io" + } +} diff --git a/domains/higherror.json b/domains/higherror.json new file mode 100644 index 000000000..c24104cd4 --- /dev/null +++ b/domains/higherror.json @@ -0,0 +1,12 @@ +{ + "description": "HighError Portfolio", + "repo": "https://github.com/higherror/higherror.github.io", + "owner": { + "username": "higherror", + "email": "hierrorua@gmail.com", + "twitter": "higherrorua" + }, + "record": { + "CNAME": "higherror.github.io" + } +} diff --git a/domains/hunai.json b/domains/hunai.json new file mode 100644 index 000000000..aca426cfb --- /dev/null +++ b/domains/hunai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hunter2809", + "email": "auser929129@gmail.com" + }, + "record": { + "A": [ + "75.2.69.226" + ] + } +} \ No newline at end of file diff --git a/domains/immails.json b/domains/immails.json new file mode 100644 index 000000000..5e70eecc5 --- /dev/null +++ b/domains/immails.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ImMAils", + "email": "anton140315@gmail.com", + "discord": "I'mMAils#1238" + }, + "description": "Why? To share my projects and other stuff. Like discord bot, node.js modules or even games!", + "record": { + "CNAME": "f0476060.xsph.ru" + } +} diff --git a/domains/infinitecode.json b/domains/infinitecode.json index c33f88ec6..d93c007d8 100644 --- a/domains/infinitecode.json +++ b/domains/infinitecode.json @@ -2,9 +2,9 @@ "description": "Infinite's personal portfolio!", "owner": { "username": "InfiniteCode", - "email": "foxyss@pm.me" + "email": "infinitecode@infiniteco.de" }, "record": { - "A": ["130.61.72.125"] + "URL": "https://infiniteco.de" } } diff --git a/domains/iop3.json b/domains/iop3.json deleted file mode 100644 index f7cc36336..000000000 --- a/domains/iop3.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my website :)", - "repo": "https://github.com/iop3/iop3.github.io", - "owner": { - "username": "iop3", - "email": "iop3.is.epic@gmail.com" - }, - "record": { - "CNAME": "iop3.github.io" - } -} diff --git a/domains/jamieisgeek.json b/domains/jamieisgeek.json new file mode 100644 index 000000000..1d2d0aa2e --- /dev/null +++ b/domains/jamieisgeek.json @@ -0,0 +1,11 @@ +{ + "description": "jamieisgeek.is-a.dev.", + "repo": "https://github.com/jamieisgeek", + "owner": { + "username": "jamieisgeek", + "email": "jamieisgeek@gmail.com" + }, + "record": { + "URL": "https://jamieisgeek.jamiecodes.repl.co/" + } +} diff --git a/domains/java.json b/domains/java.json new file mode 100644 index 000000000..6fee13ed2 --- /dev/null +++ b/domains/java.json @@ -0,0 +1,12 @@ +{ + "description": "Java's Website", + "repo": "https://github.com/javascript-void0/javascript-void0.github.io", + "owner": { + "username": "javascript-void0", + "email": "", + "discord": "Java#3865" + }, + "record": { + "CNAME": "javascript-void0.github.io" + } +} diff --git a/domains/jayantkageri.json b/domains/jayantkageri.json new file mode 100644 index 000000000..87c4d753e --- /dev/null +++ b/domains/jayantkageri.json @@ -0,0 +1,11 @@ +{ + "description": "Nothing is easy in life when you aren't interested.", + "repo": "https://github.com/jayantkageri/Website", + "owner": { + "username": "jayantkageri", + "email": "jayantkageri@gmail.com" + }, + "record": { + "URL": "https://www.jayantkageri.in" + } +} diff --git a/domains/jinso.json b/domains/jinso.json new file mode 100644 index 000000000..edbf24322 --- /dev/null +++ b/domains/jinso.json @@ -0,0 +1,12 @@ +{ + "description": "Jinso Raj", + "repo": "https://github.com/jinsoraj", + "owner": { + "username": "jinsoraj", + "email": "jinsoraj2000@gmail.com", + "twitter": "@jinsoraj" + }, + "record": { + "URL": "https://jinsoraj.eu.org" + } + } diff --git a/domains/jj.json b/domains/jj.json index e599d5de0..56f65b367 100644 --- a/domains/jj.json +++ b/domains/jj.json @@ -6,7 +6,7 @@ "email": "TheBotlyNoob@gmail.com" }, "record": { - "A": ["35.230.85.45"], + "A": ["185.199.108.153", "185.199.109.153", "185.199.111.153", "185.199.110.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/jrdrwn.json b/domains/jrdrwn.json new file mode 100644 index 000000000..9ec5ac297 --- /dev/null +++ b/domains/jrdrwn.json @@ -0,0 +1,12 @@ +{ + "description": "For a personal website", + "repo": "https://github.com/jrdrwn/jrdrwn.github.io", + "owner": { + "username": "jrdrwn", + "email": "jordirwn@gmail.com", + "twitter": "_jrdrwan" + }, + "record": { + "CNAME": "jrdrwn.github.io" + } +} diff --git a/domains/jsworld.json b/domains/jsworld.json new file mode 100644 index 000000000..ffba7c4ad --- /dev/null +++ b/domains/jsworld.json @@ -0,0 +1,12 @@ +{ + "description": "Hello I Made project JS World - A magical world where u can learn Java Script. I dont want to use js.org subdomain.", + "repo": "https://js.fireurl.ga/", + "owner": { + "username": "pythoniaweb", + "email": "gamerciter2@gmail.com", + "twitter": "dont have" + }, + "record": { + "CNAME": "pythoniaweb.github.io" + } +} diff --git a/domains/keithkhaotic.json b/domains/keithkhaotic.json new file mode 100644 index 000000000..0dc8de9ad --- /dev/null +++ b/domains/keithkhaotic.json @@ -0,0 +1,12 @@ +{ + "description": "Keith Khaotic's personal website link", + "repo": "https://github.com/KeithKhaotic/KeithKhaotic.github.io", + "owner": { + "username": "KeithKhaotic", + "email": "keithbussyness@gmail.com", + "twitter": "@redrocker133" + }, + "record": { + "CNAME": "keithkhaotic.github.io" + } +} diff --git a/domains/kekda.json b/domains/kekda.json index 01dd1fb78..2b40ad9d8 100644 --- a/domains/kekda.json +++ b/domains/kekda.json @@ -1,12 +1,10 @@ { - "description": "A description", - "repo": "https://github.com/kekda-py/kekda-py.github.io", "owner": { "username": "kekda-py", "email": "yashverma7869@gmail.com", - "twitter": "your-twitter-username" + "twitter": "Yash72274544" }, "record": { - "CNAME": "kekdais-adev-production.up.railway.app" + "URL": "https://yashverma.me" } } diff --git a/domains/kr-tukimi.json b/domains/kr-tukimi.json index f217fd6d1..8ccc1d738 100644 --- a/domains/kr-tukimi.json +++ b/domains/kr-tukimi.json @@ -5,6 +5,6 @@ "twitter": "kr_tukimi" }, "record": { - "URL": "https://kr-tukimi.com" + "URL": "https://tuki.dev" } -} \ No newline at end of file +} diff --git a/domains/kunal.json b/domains/kunal.json index 86a991ac8..338b74b09 100644 --- a/domains/kunal.json +++ b/domains/kunal.json @@ -7,6 +7,6 @@ }, "description": "I'll probably put some project pages on kunal.is-a.dev.", "record": { - "CNAME": "hashnode.network" + "CNAME": "kunalsingh19.github.io" } } diff --git a/domains/leha.json b/domains/leha.json new file mode 100644 index 000000000..c553c7f8f --- /dev/null +++ b/domains/leha.json @@ -0,0 +1,12 @@ +{ + "description": "Leha's little part of the web", + "repo": "https://github.com/leha-code/leha-code.github.io", + "owner": { + "username": "leha-code", + "email": "pezleha@duck.com", + "twitter" : "pezleha2" + }, + "record": { + "CNAME": "leha-code.github.io" + } +} diff --git a/domains/lime360.json b/domains/lime360.json new file mode 100644 index 000000000..6bc077f52 --- /dev/null +++ b/domains/lime360.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "lime360", + "email": "emeraldlime@protonmail.com", + "discord": "lime360#3291" + }, + + "description": "my website", + "repo": "https://github.com/lime360/lime360.github.io", + "record": { + "CNAME": "lime360.github.io" + } +} diff --git a/domains/linbuxiao.json b/domains/linbuxiao.json new file mode 100644 index 000000000..f81d95155 --- /dev/null +++ b/domains/linbuxiao.json @@ -0,0 +1,11 @@ +{ + "description": "Lin's Blog", + "repo": "https://github.com/linbuxiao/linbuxiao.github.io", + "owner": { + "username": "linbuxiao", + "email": "linbuxiao@gmail.com" + }, + "record": { + "CNAME": "linbuxiao.github.io" + } +} \ No newline at end of file diff --git a/domains/link.alpha.json b/domains/link.alpha.json deleted file mode 100644 index ae11706fb..000000000 --- a/domains/link.alpha.json +++ /dev/null @@ -1,12 +0,0 @@ -{ -"repo": "https://github.com/YouFoundAlpha/link", - "owner": { - "username": "YouFoundAlpha", - "email": "", - "twitter": "YouFoundAlpha", - "discord": "YouFoundAlpha#5372" - }, - "record": { -"CNAME": "youfoundalpha.github.io" - } -} diff --git a/domains/llanero.json b/domains/llanero.json new file mode 100644 index 000000000..d20bedd35 --- /dev/null +++ b/domains/llanero.json @@ -0,0 +1,12 @@ +{ + "description": "Robert Blog", + "repo": "https://github.com/robert-ds/robert-ds.github.io", + "owner": { + "username": "robert-ds", + "email": "vasquez.robert.andres@gmail.com", + "twitter": "@robertandres14" + }, + "record": { + "CNAME": "robert-ds.github.io" + } +} diff --git a/domains/logan.json b/domains/logan.json new file mode 100644 index 000000000..f2451dffc --- /dev/null +++ b/domains/logan.json @@ -0,0 +1,12 @@ +{ + "description": "LoganTheDudeRox's custom development website.", + "repo": "https://github.com/LoganLikesToCode/LoganLikesToCode.github.io", + "owner": { + "username": "LoganLikesToCode", + "email": "logantheduderox@gmail.com", + "twitter": "LoganTheDudeRox" + }, + "record": { + "CNAME": "LoganLikesToCode.github.io" + } +} diff --git a/domains/lonelil.json b/domains/lonelil.json new file mode 100644 index 000000000..84bfec106 --- /dev/null +++ b/domains/lonelil.json @@ -0,0 +1,12 @@ +{ + "description": "This will be used for my portfolio.", + "repo": "https://github.com/lonelil/lonelil.github.io", + "owner": { + "username": "lonelil", + "discord": "lonelil#0001", + "email": "" + }, + "record": { + "CNAME": "lonelil.github.io" + } +} diff --git a/domains/lukas.json b/domains/lukas.json new file mode 100644 index 000000000..ac09576f3 --- /dev/null +++ b/domains/lukas.json @@ -0,0 +1,12 @@ +{ + "description": "Lukas' Developer Page!", + "repo": "https://github.com/lukpopp0/lukpopp0.github.io", + "owner": { + "username": "LukPopp0", + "email": "luk.popp0@gmail.com", + "twitter": "@LukPopp0" + }, + "record": { + "CNAME": "lukpopp0.github.io" + } +} diff --git a/domains/mail.badboy.json b/domains/mail.badboy.json index 23d2d5fd6..0ebc9b55a 100644 --- a/domains/mail.badboy.json +++ b/domains/mail.badboy.json @@ -18,6 +18,7 @@ "mx1.improvmx.com", "mx2.improvmx.com" ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "URL": "https://badboy.is-a.dev/contact" } } diff --git a/domains/malware.json b/domains/malware.json new file mode 100644 index 000000000..66b87195f --- /dev/null +++ b/domains/malware.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "themalware", + "email": "daredevil.vikrant@gmail.com" + }, + "record": { + "CNAME": "themalware.tk" + } +} diff --git a/domains/marc.json b/domains/marc.json new file mode 100644 index 000000000..297fe957c --- /dev/null +++ b/domains/marc.json @@ -0,0 +1,11 @@ +{ + "description": "Marc Gruita is a Developer!", + "repo": "https://github.com/marcgr9", + "owner": { + "username": "marcgr9", + "email": "marc@gruita.ro" + }, + "record": { + "URL": "https://gruita.ro" + } +} diff --git a/domains/maskduck.json b/domains/maskduck.json index b080ca967..d4b41187b 100644 --- a/domains/maskduck.json +++ b/domains/maskduck.json @@ -10,6 +10,6 @@ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." }, "record": { - "CNAME": "maskducks.github.io" + "CNAME": "maskduck.pages.dev" } } diff --git a/domains/natya.json b/domains/natya.json new file mode 100644 index 000000000..366609af4 --- /dev/null +++ b/domains/natya.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/studiousgamer/studiousgamer.github.io", + "owner": { + "username": "studiousgamer", + "email": "natyavidhanbiswas10@gmail.com", + "twitter": "GamerStudious" + }, + "record": { + "CNAME": "studiousgamer.github.io" + } +} diff --git a/domains/nayan.json b/domains/nayan.json new file mode 100644 index 000000000..ab18853e8 --- /dev/null +++ b/domains/nayan.json @@ -0,0 +1,11 @@ +{ + "description": "A personal website, for Nayan Patel.", + "repo": "https://github.com/pateln123", + "owner": { + "username": "pateln123", + "email": "hello@nayanpatel.net" + }, + "record": { + "URL": "https://nayanpatel.net" + } +} diff --git a/domains/neranjana.json b/domains/neranjana.json new file mode 100644 index 000000000..55a2b16dd --- /dev/null +++ b/domains/neranjana.json @@ -0,0 +1,11 @@ +{ + "description": "Neranjana's is-a.dev subdomain", + "repo": "https://github.com/NandiyaLive/is-a-dev", + "owner": { + "username": "NandiyaLive", + "email": "neranjanaprsd@gmail.com" + }, + "record": { + "URL": "https://neranjana.tk" + } +} diff --git a/domains/nine.json b/domains/nine.json index cead71201..5a7933105 100644 --- a/domains/nine.json +++ b/domains/nine.json @@ -3,7 +3,7 @@ "repo": "https://github.com/ninelel", "record": { "A": [ - "23.185.16.239" + "66.118.232.103" ], "MX": [ "mx1.improvmx.com", diff --git a/domains/nisarga.json b/domains/nisarga.json new file mode 100644 index 000000000..8bfe90e67 --- /dev/null +++ b/domains/nisarga.json @@ -0,0 +1,12 @@ +{ + "description": "Nisarga", + "repo": "https://github.com/nisarga-developer/nisarga-developer.github.io", + "owner": { + "username": "nisarga-developer", + "email": "adhikarynisarga17@gmail.com", + "twitter": "adhikarynisarga" + }, + "record": { + "CNAME": "nisarga-developer.github.io" + } +} diff --git a/domains/notify-api.json b/domains/notify-api.json new file mode 100644 index 000000000..c55d112b4 --- /dev/null +++ b/domains/notify-api.json @@ -0,0 +1,11 @@ + + { + "owner": { + "username": "andrewstech", + "email": "andrew@win11react.com" + }, + "record": { + "A": ["140.238.66.199"] + } + } + diff --git a/domains/nyan.json b/domains/nyan.json new file mode 100644 index 000000000..2320dfa1e --- /dev/null +++ b/domains/nyan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "aeongdesu", + "email": "", + "revolt": "@Nyan", + "discord": "Bread#2635", + "note": "discord id: 548821619661864962" + }, + "record": { + "CNAME": "ppy.pages.dev" + } +} diff --git a/domains/omxpro.json b/domains/om.json similarity index 75% rename from domains/omxpro.json rename to domains/om.json index 7d0d3f16c..dc15cda02 100644 --- a/domains/omxpro.json +++ b/domains/om.json @@ -1,12 +1,12 @@ { "description": "Portfolio - a simple portfolio website for Omxpro. It's in Beta Stages. Thanks for visiting my Portfolio! I hope to see you again.", - "repo": "https://github.com/omxpro/omxpro.github.io", + "repo": "https://github.com/omxpro/portfolio-cf", "owner": { "username": "omxpro", "email": "omsenjalia@gmail.com", "twitter": "DaRealOmxpro" }, "record": { - "CNAME": "omxpro.github.io" + "CNAME": "portfolio-cf.pages.dev" } } diff --git a/domains/onichan.json b/domains/onichan.json deleted file mode 100644 index 189c2ecb3..000000000 --- a/domains/onichan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "onichan's plugins. what can i say?", - "repo": "https://github.com/rbstsoul", - "owner": { - "username": "rbstsoul", - "email": "rbstsoul@gmail.com" - }, - "record": { - "CNAME": "readthedocs.io" - } -} diff --git a/domains/philcajurao.json b/domains/philcajurao.json new file mode 100644 index 000000000..fb8158e0a --- /dev/null +++ b/domains/philcajurao.json @@ -0,0 +1,11 @@ +{ + "description": "my firstime here and for my portfolio website", + "repo": "https://github.com/philcajurao/philcajurao.github.io", + "owner": { + "username": "philcajurao", + "email": "philcajurao@gmail.com" + }, + "record": { + "CNAME": "philcajurao.github.io" + } +} diff --git a/domains/proxy.json b/domains/proxy.json new file mode 100644 index 000000000..450416a95 --- /dev/null +++ b/domains/proxy.json @@ -0,0 +1,11 @@ +{ + "description": "Ultraviolet proxy", + "repo": "https://github.com/notAperson535/Ultraviolet-Static", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } +} diff --git a/domains/radar.json b/domains/radar.json new file mode 100644 index 000000000..6db2b0aa7 --- /dev/null +++ b/domains/radar.json @@ -0,0 +1,13 @@ +{ + "description": "Radar's personal developer website", + "repo": "https://github.com/RadarFolf/CaseyK9", + "owner": { + "username": "CaseyK9", + "email": "rocco@caseymediallc.com", + "twitter": "RadarFolf", + "discord": "Radar#0001" + }, + "record": { + "CNAME": "caseymediallc.com" + } +} diff --git a/domains/ratler.json b/domains/ratler.json new file mode 100644 index 000000000..af775cb3c --- /dev/null +++ b/domains/ratler.json @@ -0,0 +1,15 @@ +{ + "description": "ratler is a dev subdomain", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.is-a.dev" + }, + "record": { + "A": ["89.106.200.1"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/re.maskduck.json b/domains/re.maskduck.json new file mode 100644 index 000000000..3ecc87b03 --- /dev/null +++ b/domains/re.maskduck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MaskDuck", + "email": "maskduckuwu@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/reed.json b/domains/reed.json index eaeb89b1f..4af0861ca 100644 --- a/domains/reed.json +++ b/domains/reed.json @@ -1,10 +1,12 @@ { - "repo": "https://github.com/reed-jones", + "repo": "https://github.com/reed-jones/reedjones.com", + "description": "Reeds personal developer site", "owner": { "username": "reed-jones", - "email": "reedjones@reedjones.com" + "email": "reedjones@reedjones.com", + "twitter": "rj0nz" }, "record": { - "CNAME": "reedjones.com" + "URL": "https://www.reedjones.com" } } diff --git a/domains/register.json b/domains/register.json new file mode 100644 index 000000000..652ecebea --- /dev/null +++ b/domains/register.json @@ -0,0 +1,11 @@ +{ + "description": "The subdomain for the Is-a.Dev Web Registration Dashboard (Incomplete)", + "repo": "https://github.com/is-a-dev", + "owner": { + "username": "@is-a.dev/maintainers", + "email": "mahir@molai.dev" + }, + "record": { + "CNAME": "is-a-dev-registration.pages.dev" + } +} diff --git a/domains/rennaru.json b/domains/rennaru.json deleted file mode 100644 index 46bd479f5..000000000 --- a/domains/rennaru.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My personal website ", - "repo": "https://github.com/NotRennaru/NotRennaru.github.io", - "owner": { - "username": "NotRennaru", - "email": "rennaru.fuij@gmail.com", - "twitter": "RennaruFuij" - }, - "record": { - "CNAME": "NotRennaru.github.io" - } -} diff --git a/domains/roj.json b/domains/roj.json new file mode 100644 index 000000000..8e7e29e7e --- /dev/null +++ b/domains/roj.json @@ -0,0 +1,11 @@ +{ + "description": "Roj", + "owner": { + "username": "roj1512", + "email": "ez@roj.im", + "twitter": "roj1512" + }, + "record": { + "URL": "https://roj.im" + } +} diff --git a/domains/rv178.json b/domains/rv178.json new file mode 100644 index 000000000..cd0208a33 --- /dev/null +++ b/domains/rv178.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/rv178/website", + "owner": { + "username": "rv178", + "email": "idliyout@gmail.com" + }, + "record": { + "CNAME": "rv178.github.io" + } +} diff --git a/domains/rxyhn.json b/domains/rxyhn.json new file mode 100644 index 000000000..9cd4a91bc --- /dev/null +++ b/domains/rxyhn.json @@ -0,0 +1,12 @@ +{ + "description": "Rxyhn's Personal Site", + "repo": "https://github.com/rxyhn/rxyhn.github.io", + "owner": { + "username": "rxyhn", + "email": "rayhankafipratama333@gmail.com", + "discord": "rxyhn#1154" + }, + "record": { + "CNAME": "rxyhn.github.io" + } +} diff --git a/domains/sabelgames.json b/domains/sabelgames.json new file mode 100644 index 000000000..088e0446c --- /dev/null +++ b/domains/sabelgames.json @@ -0,0 +1,12 @@ + +{ + "owner": { + "username": "SabelGames", + "email": "contact@sabelgames.is-a.dev" + }, + "record": { + "URL": "https://sabelgames.itch.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/sakko.json b/domains/sakko.json new file mode 100644 index 000000000..2e4037cfa --- /dev/null +++ b/domains/sakko.json @@ -0,0 +1,12 @@ +{ + "description": "SaKKo from Thailand", + "repo": "https://github.com/SaKKo/soontobeprogrammer.com", + "owner": { + "username": "sakko", + "email": "saklism@gmail.com", + "twitter": "sakkosama" + }, + "record": { + "CNAME": "sakko.github.io" + } +} diff --git a/domains/sam-jspn.json b/domains/sam-jspn.json new file mode 100644 index 000000000..8544a4a4b --- /dev/null +++ b/domains/sam-jspn.json @@ -0,0 +1,12 @@ +{ + "description": "Sam's website", + "repo":"https://github.com/Samuel-Jspn/lair", + "owner": { + "username": "Samuel-Jspn", + "email": "sam.josephine@outlook.fr", + "discord": "R3dL1ghty#2904" + }, + "record": { + "CNAME": "samuel-jspn.github.io" + } +} diff --git a/domains/saml.json b/domains/saml.json index c4f95f174..161c827ff 100644 --- a/domains/saml.json +++ b/domains/saml.json @@ -7,6 +7,16 @@ "discord": "SamDev7#1767" }, "record": { - "CNAME": "samdev-7.github.io" + "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" } } diff --git a/domains/samuelnihbos.json b/domains/samuelnihbos.json new file mode 100644 index 000000000..462780986 --- /dev/null +++ b/domains/samuelnihbos.json @@ -0,0 +1,12 @@ +{ + "description": "samuelnihbos.is-a.dev", + "repo": "https://github.com/samuelnihbos/samuelnihbos.github.io", + "owner": { + "username": "samuelnihbos", + "email": "samuelnihbos@gnuweeb.org", + "twitter": "Samueeeeel6" + }, + "record": { + "CNAME": "samuelnihbos.github.io" + } +} diff --git a/domains/sea-shell.jj.json b/domains/sea-shell.jj.json deleted file mode 100644 index b83d36489..000000000 --- a/domains/sea-shell.jj.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "website for the Sea Shell project", - "repo": "https://github.com/Sea-Shell/site", - "owner": { - "username": "TheBotlyNoob", - "email": "jj@jj.is-a.dev" - }, - "record": { - "CNAME": "site-production-be0d.up.railway.app" - } -} diff --git a/domains/rim.json b/domains/slime.json similarity index 51% rename from domains/rim.json rename to domains/slime.json index 869b213cd..00a7810c8 100644 --- a/domains/rim.json +++ b/domains/slime.json @@ -1,9 +1,9 @@ { "owner": { - "username": "itsRim", + "username": "purpleblueslime", "email": "purpleblueslime@gmail.com" }, "record": { - "CNAME": "itsrim.github.io" + "CNAME": "purpleblueslime.github.io" } } diff --git a/domains/spechide.json b/domains/spechide.json new file mode 100644 index 000000000..fb206cfd4 --- /dev/null +++ b/domains/spechide.json @@ -0,0 +1,13 @@ +{ + "description": "My personal site", + "repo": "https://github.com/SpEcHiDe/SpEcHiDe.github.io", + "owner": { + "username": "SpEcHiDe", + "email": "", + "twitter": "SpEcHiDe" + }, + "record": { + "CNAME": "SpEcHiDe.github.io" + } +} + diff --git a/domains/spongly.json b/domains/spongly.json new file mode 100644 index 000000000..aac0f77f1 --- /dev/null +++ b/domains/spongly.json @@ -0,0 +1,11 @@ +{ + "description": "Spongly's Personal Site", + "repo": "https://github.com/spongly/spongly.github.io", + "owner": { + "username": "spongly", + "email": "mail.spongly@gmail.com" + }, + "record": { + "CNAME": "spongly.github.io" + } +} diff --git a/domains/sputnick567.json b/domains/sputnick567.json new file mode 100644 index 000000000..1fc17b458 --- /dev/null +++ b/domains/sputnick567.json @@ -0,0 +1,11 @@ +{ + + "repo": "https://github.com/sputnick567/sputnick567.github.io", + "owner": { + "username": "sputnick567", + "email": "567sputnick@gmail.com" + }, + "record": { + "CNAME": "sputnick567.github.io" + } +} diff --git a/domains/staff.json b/domains/staff.json new file mode 100644 index 000000000..5cba77419 --- /dev/null +++ b/domains/staff.json @@ -0,0 +1,11 @@ + + { + "owner": { + "username": "mahirmolai27", + "email": "mtgissmart@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-maintainers.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/stark.json b/domains/stark.json new file mode 100644 index 000000000..cc53bc7f5 --- /dev/null +++ b/domains/stark.json @@ -0,0 +1,12 @@ +{ + "description": "Projects by Stark Programmer", + "repo": "https://github.com/StarkBotsIndustries/starkbotsindustries.github.io", + "owner": { + "username": "StarkBotsIndustries", + "email": "starkbotsindustries@gmail.com", + "telegram": "StarkProgrammer" + }, + "record": { + "CNAME": "StarkBotsIndustries.github.io" + } +} diff --git a/domains/sumanjay.json b/domains/sumanjay.json new file mode 100644 index 000000000..215a04f69 --- /dev/null +++ b/domains/sumanjay.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/cyberboysumanjay/cyberboysumanjay.github.io", + "owner": { + "username": "cyberboysumanjay", + "email": "sumanjay@duck.com" + }, + "record": { + "CNAME": "cyberboysumanjay.github.io" + } +} diff --git a/domains/tanu.json b/domains/tanu.json index 4833a5f4a..4751d152b 100644 --- a/domains/tanu.json +++ b/domains/tanu.json @@ -1,12 +1,12 @@ { "description": "Tanu's Website", - "repo": "https://github.com/desktopdotini/desktopdotini.github.io", + "repo": "https://github.com/desktopdotini/websitev3", "owner": { "username": "desktopdotini", "email": "cloneyinnit@gmail.com", "twitter": "tanumakescode" }, "record": { - "CNAME": "desktopdotini.github.io" + "CNAME": "websitev3.pages.dev" } - } \ No newline at end of file + } diff --git a/domains/tekno.json b/domains/tekno.json index 751a22734..63a41fcfc 100644 --- a/domains/tekno.json +++ b/domains/tekno.json @@ -1,5 +1,5 @@ { - "description": "Custom domain for my personal github pages site", + "description": "Custom domain for my personal site", "repo": "https://github.com/TeknoSenpai/teknosenpai.github.io", "owner": { "username": "TeknoSenpai", @@ -7,6 +7,8 @@ "twitter": "@TeknoSenpai" }, "record": { - "CNAME": "teknosenpai.github.io" + "A": [ + "173.212.245.116" + ] } } diff --git a/domains/terminal.sea-shells.jj.json b/domains/terminal.sea-shells.jj.json deleted file mode 100644 index b260aa518..000000000 --- a/domains/terminal.sea-shells.jj.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "online terminal for the Sea Shell project", - "repo": "https://github.com/Sea-Shell/online-terminal", - "owner": { - "username": "TheBotlyNoob", - "email": "jj@jj.is-a.dev" - }, - "record": { - "CNAME": "online-terminal-production.up.railway.app" - } -} diff --git a/domains/thomas-shelby.json b/domains/thomas-shelby.json new file mode 100644 index 000000000..7e57baaff --- /dev/null +++ b/domains/thomas-shelby.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/prbhanu/prbhanu.github.io", + "owner": { + "username": "prbhanu", + "email": "prbhanu1718@gmil.com", + "twitter": "@prreddy05413731" + }, + "record": { + "CNAME": "prbhanu.github.io" + } +} diff --git a/domains/tiuri.json b/domains/tiuri.json new file mode 100644 index 000000000..06af7ddaf --- /dev/null +++ b/domains/tiuri.json @@ -0,0 +1,12 @@ +{ + "description": "because im an dev", + "repo": "https://github.com/ituir", + "owner": { + "username": "ituir", + "email": "tiuri@server.tiuri.be" + }, + "record": { + "A": [ + "138.201.76.10" + ]} +} diff --git a/domains/veer.json b/domains/veer.json new file mode 100644 index 000000000..cf1986de8 --- /dev/null +++ b/domains/veer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheVeerRana", + "email": "hello@veer.codes" + }, + "record": { + "CNAME": "veer.codes" + } +} diff --git a/domains/vikrant.json b/domains/vikrant.json new file mode 100644 index 000000000..e6911c829 --- /dev/null +++ b/domains/vikrant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "150207", + "email": "daredevil.vikrant@gmail.com" + }, + "record": { + "CNAME": "themalware.tk" + } +} diff --git a/domains/void.json b/domains/void.json new file mode 100644 index 000000000..2fccde29f --- /dev/null +++ b/domains/void.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomgx", + "email": "deliveryservice01q@gmail.com" + }, + "record": { + "CNAME": "tomgx.github.io" + } +} diff --git a/domains/wan.json b/domains/wan.json new file mode 100644 index 000000000..9ec5ac297 --- /dev/null +++ b/domains/wan.json @@ -0,0 +1,12 @@ +{ + "description": "For a personal website", + "repo": "https://github.com/jrdrwn/jrdrwn.github.io", + "owner": { + "username": "jrdrwn", + "email": "jordirwn@gmail.com", + "twitter": "_jrdrwan" + }, + "record": { + "CNAME": "jrdrwn.github.io" + } +} diff --git a/domains/william.json b/domains/william.json index 4b556b003..42483e170 100644 --- a/domains/william.json +++ b/domains/william.json @@ -1,12 +1,10 @@ { "owner": { "username": "WilliamDavidHarrison", - "email": "", - "twitter": "WDHarrison09", - "discord": "William#0001" + "email": "william@williamharrison.dev" }, "record": { - "URL": "https://williamharrison.dev" + "CNAME": "edge.redirect.pizza" } } diff --git a/domains/xen.json b/domains/xen.json new file mode 100644 index 000000000..2e6040a49 --- /dev/null +++ b/domains/xen.json @@ -0,0 +1,12 @@ +{ + "description": "Website for my projects", + "repo": "https://github.com/xenmods/xenmods.github.io", + "owner": { + "username": "xenmods", + "email": "ilumomin04@gmail.com", + "twitter": "momin_ilf" + }, + "record": { + "CNAME": "xenmods.github.io" + } +} diff --git a/domains/yashash.json b/domains/yashash.json new file mode 100644 index 000000000..29d76ba1d --- /dev/null +++ b/domains/yashash.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/yashash1511/yashash1511.github.io", + "owner": { + "username": "yashash1511", + "email": "yashash1511@gmail.com" + }, + "record": { + "CNAME": "yashash1511.github.io" + } +} diff --git a/domains/yuk1ch.json b/domains/yuk1ch.json new file mode 100644 index 000000000..5580679de --- /dev/null +++ b/domains/yuk1ch.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ImRaid", + "email": "itsraidlol@gmail.com", + "discord":"! Yuk1ch#7484", + "telegram": "@Yuk1ch" + }, + "record": { + "CNAME": "d1d16500-13c2-4fc8-a658-87d258da2316.id.repl.co" + } +} diff --git a/domains/zeptar.json b/domains/zeptar.json index 06f92ce41..3fa995229 100644 --- a/domains/zeptar.json +++ b/domains/zeptar.json @@ -1,12 +1,13 @@ { - "description": "Protofolio of Zeptar", + "description": "Zeptar's Portofolio", "repo": "https://github.com/Zeptar1069/zeptar1069.github.io", "owner": { "username": "Zeptar1069", - "email": "", - "discord": "Zeptar#7882" + "email": "terryk.onekorea@gmail.com", + "discord": "Zeptar#7882", + "note": "My Discord ID is 893211748767768606" }, "record": { - "CNAME": "zeptar1069.github.io" + "CNAME": "zeptar1069githubio.zeptar.repl.co" } } diff --git a/domains/zplusfour.json b/domains/zplusfour.json index 5b5936305..8bef0a33a 100644 --- a/domains/zplusfour.json +++ b/domains/zplusfour.json @@ -1,11 +1,12 @@ { - "description": "zplusfour's personal developer website", - "repo": "https://github.com/zplusfour", - "owner": { - "username": "zplusfour", - "email": "zgjoniur@gmail.com" - }, - "record": { - "CNAME": "zplusfour.repl.co" - } + "owner": { + "username": "zplusfour", + "email": "zgjoniur@gmail.com", + "discord": "zplusfour#0001" + }, + + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/utils/domain-service.js b/utils/domain-service.js index 7829e7431..81421f7aa 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -14,7 +14,7 @@ const recordToRedirection = ({ name, address }) => ({ }); const recordToZone = ({ name, type, address, id, priority }) => ({ line: id, - name, + name: name === '@' ? `${DOMAIN_DOMAIN}.` : name, type, address, ...(type === 'MX' ? { priority } : {}), @@ -79,7 +79,7 @@ const executeBatch = (batches) => batches.reduce((promise, batch, index) => { const failed = results.filter(x => (x.result || {}).status != 1); log(`${values.length - failed.length}/${values.length}`); - failed.length && log(failed); + failed.length && log(JSON.stringify(failed, null, 2)); return null; }); diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json index 45599ab2e..92c127064 100644 --- a/utils/invalid-domains.json +++ b/utils/invalid-domains.json @@ -6,6 +6,8 @@ "notifications", "notification", "_acme-challenge", + "wwww", + "ww", "ww1", "ww2", "ww3",