diff --git a/.env b/.env index 26270e769..8022d3f4e 100644 --- a/.env +++ b/.env @@ -3,3 +3,4 @@ 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 diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index 41493d93f..92cb4bd01 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -28,6 +28,7 @@ jobs: 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 }} uses: borales/actions-yarn@v2.0.0 with: cmd: publish-records 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/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e6487f74a..581058a51 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -2,9 +2,8 @@ This is a Code of Conduct for any interactions in this repository. This includes pull requests, issues, etc. * **Don't be a dick** - It's not that complicated. Just be nice to people. -* **Don't abuse the service** - This service is intended for developers to get a pretty URL for their personal websites. -* **No Wrongful Uses Of The Service** - Do not use this site as a way, to promote hacking, cheating, committing fraud, and other illegal activites. - *(cheating isn't illegal but it is still considered abuse of this service)* +* **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites. +* **No Wrongful Uses Of The Service** - Do not use this site as a way, to promote hacking, scams, fraud, and other illegal activites. If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue. The abuse reports will be investigated and the necessary action will be taken! diff --git a/README.md b/README.md index 3845b57ba..a9c5209af 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ## 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) +* [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 @@ -33,16 +33,17 @@ Also, consider starring this repo! ## Similar services You should also checkout - * [js.org](https://github.com/js-org/js.org/tree/master) (**NOTE**: `js.org` is specifically for JS focused project) -* [runs-on.tech](https://github.com/aakhilv/runs-on.tech) +* [is-a-good.dev](https://github.com/is-a-good-dev/Register) +* [cluster.ws & wip.la](https://github.com/Olivr/free-domain) ## 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 14b04b524..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-username.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/a-ditya.json b/domains/a-ditya.json new file mode 100644 index 000000000..9d9fe4af7 --- /dev/null +++ b/domains/a-ditya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AdityaOP2008", + "discord": "844843800874582048", + "email": "bw.dev@yahoo.com" + }, + "record": { + "CNAME": "c7106b01-6b1c-4d4f-b0a5-6c82b3e9a4a4.id.repl.co" + } +} diff --git a/domains/aakanksha.json b/domains/aakanksha.json new file mode 100644 index 000000000..b02cd9637 --- /dev/null +++ b/domains/aakanksha.json @@ -0,0 +1,11 @@ +{ + "description": "Aakanksha's .is-a.dev domain", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "aakankshabhende.github.io" + } + } \ No newline at end of file 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/abdulrahman.json b/domains/abdulrahman.json index b15d19344..68a0af4b5 100644 --- a/domains/abdulrahman.json +++ b/domains/abdulrahman.json @@ -1,8 +1,8 @@ { "description": "A personal website for my career.", - "repo": "https://github.com/TheMaestro1s/my-website", + "repo": "https://github.com/abdulrahman1s/my-website", "owner": { - "username": "TheMaestro1s", + "username": "abdulrahman1s", "email": "abdulrahman.8alah@gmail.com" }, "record": { 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/achraf.json b/domains/achraf.json new file mode 100644 index 000000000..e5173a56b --- /dev/null +++ b/domains/achraf.json @@ -0,0 +1,11 @@ +{ + "description": "Achraf's Website!", + "repo": "https://github.com/Ax-r/ax-r.github.io", + "owner": { + "username": "Ax-r", + "email": "hostmaster@netcourrier.com" + }, + "record": { + "CNAME": "ax-r.github.io" + } +} diff --git a/domains/aggelos-007.json b/domains/aggelos-007.json new file mode 100644 index 000000000..75e1b3194 --- /dev/null +++ b/domains/aggelos-007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aggelos-007", + "email": "aggeloss007@gmail.com" + }, + "record": { + "CNAME": "72ea0bf6-bb1e-4fe3-82f2-a3e0b5d75a0b.id.repl.co" + } +} 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/ailakks.json b/domains/ailakks.json new file mode 100644 index 000000000..776a4aabb --- /dev/null +++ b/domains/ailakks.json @@ -0,0 +1,11 @@ +{ + "description": "ailakks.is-a.dev.", + "repo": "https://github.com/ailakks", + "owner": { + "username": "ailakks", + "email": "hola@cortmnzz.com" + }, + "record": { + "URL": "https://cortmnzz.com" + } +} diff --git a/domains/akemi.json b/domains/akemi.json new file mode 100644 index 000000000..15cf69948 --- /dev/null +++ b/domains/akemi.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website goes here", + "repo": "https://github.com/ItzCuteAkemi/itzcuteakemi.github.io", + "owner": { + "username": "ItzCuteAkemi", + "email": "christianpandapotans@gmail.com", + "twitter": "@ItzCuteAkemi" + }, + "record": { + "CNAME": "itzcuteakemi.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/almatch.json b/domains/almatch.json new file mode 100644 index 000000000..f7e5e3d5a --- /dev/null +++ b/domains/almatch.json @@ -0,0 +1,11 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "CNAME":"imadboy89.github.io" + } +} diff --git a/domains/alperen.json b/domains/alperen.json new file mode 100644 index 000000000..0d11c2ee1 --- /dev/null +++ b/domains/alperen.json @@ -0,0 +1,11 @@ +{ + "description": "Alperen Aslan Portfolio", + "repo": "https://github.com/alperenasln/alperenasln.github.io", + "owner": { + "username": "alperenasln", + "email": "alperenaslan55@gmail.com" + }, + "record": { + "CNAME": "alperenasln.github.io" + } +} diff --git a/domains/alpha.json b/domains/alpha.json new file mode 100644 index 000000000..207dfbc41 --- /dev/null +++ b/domains/alpha.json @@ -0,0 +1,22 @@ +{ +"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/alpine.wolveslair.alpha.json b/domains/alpine.wolveslair.alpha.json new file mode 100644 index 000000000..26373e01c --- /dev/null +++ b/domains/alpine.wolveslair.alpha.json @@ -0,0 +1,11 @@ +{ +"repo": "https://github.com/WolvesLair/Alpine", + "owner": { + "username": "WolvesLair", + "email": "wolves.lair@alpha.is-a.dev", + "twitter": "wolveslairdis" + }, + "record": { + "CNAME": "wolveslair.github.io" + } +} diff --git a/domains/amarjeet.json b/domains/amarjeet.json new file mode 100644 index 000000000..b8a105680 --- /dev/null +++ b/domains/amarjeet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amarjeetmalpotra", + "email": "amarjeetmalpotra@outlook.com" + }, + "record": { + "CNAME": "amarjeetmalpotra.github.io" + } +} diff --git a/domains/amjad.json b/domains/amjad.json new file mode 100644 index 000000000..b17b0a877 --- /dev/null +++ b/domains/amjad.json @@ -0,0 +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": "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/anderson.json b/domains/anderson.json new file mode 100644 index 000000000..97f70b62a --- /dev/null +++ b/domains/anderson.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio site for show my projects, my social networks, my knowledges...", + "repo": "https://github.com/AndersonPGS/me", + "owner": { + "username": "andersonpgs", + "email": "andersonpgs2001@hotmail.com" + }, + "record": { + "URL": "https://andersonpgs.github.io/me" + } +} 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/antonio.json b/domains/antonio.json new file mode 100644 index 000000000..636e10ca0 --- /dev/null +++ b/domains/antonio.json @@ -0,0 +1,11 @@ +{ + "description": "For my personal landing page", + "repo": "https://github.com/YantCaccia/yantcaccia.github.io", + "owner": { + "username": "YantCaccia", + "email": "yantcaccia@gmail.com" + }, + "record": { + "CNAME": "yantcaccia.github.io" + } +} diff --git a/domains/anubhav823.json b/domains/anubhav823.json new file mode 100644 index 000000000..182c7bb22 --- /dev/null +++ b/domains/anubhav823.json @@ -0,0 +1,11 @@ +{ + "description": "anubhav823' personal developer website", + "repo": "", + "owner": { + "username": "anubhav823", + "email": "anubhav823@gmail.com" + }, + "record": { + "URL": "https://anubhav823.github.io/wordle" + } +} diff --git a/domains/api.alpha.json b/domains/api.alpha.json new file mode 100644 index 000000000..39979cb64 --- /dev/null +++ b/domains/api.alpha.json @@ -0,0 +1,12 @@ +{ +"repo": "https://github.com/YouFoundAlpha/api", + "owner": { + "username": "YouFoundAlpha", + "email": "", + "twitter": "YouFoundAlpha", + "discord": "YouFoundAlpha#5372" + }, + "record": { +"CNAME": "alphaapi.up.railway.app" +} +} diff --git a/domains/api.arman.json b/domains/api.arman.json new file mode 100644 index 000000000..e77a8819b --- /dev/null +++ b/domains/api.arman.json @@ -0,0 +1,10 @@ +{ + "description": "Arman's Api", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.is-a.dev" + }, + "record": { + "CNAME": "b25320ee-226d-4531-ad1f-db62e88ac1d4.id.repl.co" + } +} diff --git a/domains/api.badboy.json b/domains/api.badboy.json new file mode 100644 index 000000000..4f07ae142 --- /dev/null +++ b/domains/api.badboy.json @@ -0,0 +1,12 @@ +{ + "description": "Suzumi Api", + "owner": { + "username": "bad-boy-codes", + "email": "contact@mail.badboy.is-a.dev", + "discord": "445073800850046977", + "twitter": "BadBoyGoesBrr" + }, + "record": { + "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" + } +} diff --git a/domains/api.json b/domains/api.json new file mode 100644 index 000000000..d5c11c05e --- /dev/null +++ b/domains/api.json @@ -0,0 +1,11 @@ +{ + "description": "Official is-a.dev API", + "repo": "https://github.com/MaskDuck/is-a-dev-api", + "owner": { + "username": "mtgsquad & MaskDuck", + "email": "mahir@molai.dev" + }, + "record": { + "CNAME": "is-a-dev-api-production.up.railway.app" + } +} diff --git a/domains/ari.json b/domains/ari.json new file mode 100644 index 000000000..68f02077d --- /dev/null +++ b/domains/ari.json @@ -0,0 +1,11 @@ +{ + "description": "RayhanADev's Website!", + "repo": "https://github.com/rayhanadev/Personal-Website", + "owner": { + "username": "rayhanadev", + "email": "rayhanadev@protonmail.com" + }, + "record": { + "URL": "http://furret.codes" + } +} diff --git a/domains/arman.json b/domains/arman.json index ad4955199..618155de2 100644 --- a/domains/arman.json +++ b/domains/arman.json @@ -3,9 +3,9 @@ "repo": "https://github.com/ItzArman09/website", "owner": { "username": "ItzArman09", - "email": "gyfufifa@norwegischlernen.info" + "email": "contact@mail.arman.is-a.dev" }, "record": { - "CNAME": "itzarman09.github.io" + "A": ["89.106.200.1"] } } diff --git a/domains/armoredvortex.json b/domains/armoredvortex.json new file mode 100644 index 000000000..c759272eb --- /dev/null +++ b/domains/armoredvortex.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio website", + "owner": { + "username": "armoredvortex", + "email": "rachitpandey@protonmail.com" + }, + "record": { + "CNAME": "armoredvortex.github.io" + } +} diff --git a/domains/arter.json b/domains/arter.json new file mode 100644 index 000000000..ef9448b9c --- /dev/null +++ b/domains/arter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "animemoeus", + "email": "arter.tendean.07@gmail.com" + }, + "record": { + "URL": "https://animemoe.us" + } +} diff --git a/domains/ashwin.json b/domains/ashwin.json new file mode 100644 index 000000000..57d855556 --- /dev/null +++ b/domains/ashwin.json @@ -0,0 +1,12 @@ +{ + "description": "sample repo", + "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io", + "owner": { + "username": "ashwin3082002", + "email": "ashwin3082002@gmail.com", + "twitter": "ashwin3082002" + }, + "record": { + "CNAME": "ashwin3082002.github.io" + } +} 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/atharv.json b/domains/atharv.json new file mode 100644 index 000000000..23357630c --- /dev/null +++ b/domains/atharv.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website for Atharv", + "repo": "https://github.com/realatharv/atharv.github.io", + "owner": { + "username": "realatharv", + "email": "atharv.sbiz@gmail.com", + "twitter": "realatharv" + }, + "record": { + "CNAME": "realatharv.github.io" + } +} 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/badboy.json b/domains/badboy.json index 7399165a6..1a6bea1a4 100644 --- a/domains/badboy.json +++ b/domains/badboy.json @@ -2,12 +2,12 @@ "description": "Bad Boy's Website", "owner": { "username": "bad-boy-codes", - "email": "sonupanda078@gmail.com", + "email": "contact@mail.badboy.is-a.dev", "discord": "445073800850046977", "note": "My Discord ID is 445073800850046977.", "twitter": "BadBoyGoesBrr" }, "record": { - "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" + "CNAME": "4baf80cb-7f87-4d2c-8e40-938f4045acfd.id.repl.co" } } 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/benjo.json b/domains/benjo.json new file mode 100644 index 000000000..a76f250b0 --- /dev/null +++ b/domains/benjo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Golgrax", + "email": "", + "twitter": "BughawBenjo" + }, + "record": { + "CNAME": "09a88fc1-344d-44cf-8b92-98cc1383dff6.id.repl.co" + } +} diff --git a/domains/beta.omxpro.json b/domains/beta.omxpro.json new file mode 100644 index 000000000..c49987bcc --- /dev/null +++ b/domains/beta.omxpro.json @@ -0,0 +1,12 @@ +{ + "description": "this is a subdomain for the beta version of my portfolio", + "repo": "https://github.com/omxproYT/omxproyt.github.io", + "owner": { + "username": "omxproYT", + "email": "omsenjalia@gmail.com", + "twitter": "DaRealOmxpro" + }, + "record": { + "CNAME": "omxproYT.github.io" + } +} diff --git a/domains/blog.alpha.json b/domains/blog.alpha.json new file mode 100644 index 000000000..e4325163f --- /dev/null +++ b/domains/blog.alpha.json @@ -0,0 +1,12 @@ +{ +"repo": "https://github.com/YouFoundAlpha/blog", + "owner": { + "username": "YouFoundAlpha", + "email": "", + "twitter": "YouFoundAlpha", + "discord": "YouFoundAlpha#5372" + }, + "record": { +"CNAME": "youfoundalpha.github.io" + } +} diff --git a/domains/blogs.aakanksha.json b/domains/blogs.aakanksha.json new file mode 100644 index 000000000..9fb453d71 --- /dev/null +++ b/domains/blogs.aakanksha.json @@ -0,0 +1,11 @@ +{ + "description": "Aakanksha's Blog", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } + } \ No newline at end of file diff --git a/domains/blurnope.json b/domains/blurnope.json new file mode 100644 index 000000000..4292de666 --- /dev/null +++ b/domains/blurnope.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/blurnope/blurnope.github.io", + "owner": { + "username": "blurnope", + "email": "cynosuregone@gmail.com", + "discord": "blurnope.#2655" + }, + "record": { + "CNAME": "blurnope.github.io" + } +} diff --git a/domains/boba.json b/domains/boba.json new file mode 100644 index 000000000..d6226cdb3 --- /dev/null +++ b/domains/boba.json @@ -0,0 +1,11 @@ +{ + "description": "A personal blog.", + "repo": "https://github.com/tarob0ba/tarob0ba.github.io", + "owner": { + "username": "tarob0ba", + "email": "beckett@chatter-social.com" + }, + "record": { + "CNAME": "tarob0ba.github.io" + } +} diff --git a/domains/boolean44.json b/domains/boolean44.json new file mode 100644 index 000000000..cde6bc82b --- /dev/null +++ b/domains/boolean44.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/boolean44-repos/boolean44-repos.github.io", + "owner": { + "username": "boolean44-repos", + "email": "serenitypalmer10@gmail.com" + }, + "record": { + "CNAME": "boolean44-repos.github.io" + } + } \ No newline at end of file diff --git a/domains/bot.api.json b/domains/bot.api.json new file mode 100644 index 000000000..7606515f6 --- /dev/null +++ b/domains/bot.api.json @@ -0,0 +1,11 @@ +{ + "description": "Official Is A Dev bot API", + "repo": "https://github.com/mtgsquad/is-a-dev-bot", + "owner": { + "username": "Mahir", + "email": "mahir@molai.dev" + }, + "record": { + "CNAME": "is-a-dev-bot-production.up.railway.app" + } +} diff --git a/domains/bot.riskymh.json b/domains/bot.riskymh.json new file mode 100644 index 000000000..6608dea8a --- /dev/null +++ b/domains/bot.riskymh.json @@ -0,0 +1,13 @@ +{ + "description": "Discord Bot Website", + "repo": "https://github.com/RiskyMH/RiskyBOT", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io/RiskyBOT" + } + } + diff --git a/domains/burandby.json b/domains/burandby.json new file mode 100644 index 000000000..9d661b37a --- /dev/null +++ b/domains/burandby.json @@ -0,0 +1,11 @@ +{ + "description": "Pico-8 in-browser emulator.", + "repo": "https://github.com/burandby", + "owner": { + "username": "burandby", + "email": "bur.and.by@gmail.com" + }, + "record": { + "CNAME": "burandby.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/cartar.json b/domains/cartar.json index 156f4986d..24e228209 100644 --- a/domains/cartar.json +++ b/domains/cartar.json @@ -7,6 +7,6 @@ "twitter": "cartar0058" }, "record": { - "A": ["209.126.0.170"] + "A": ["154.53.34.33"] } } diff --git a/domains/cat.sx9.json b/domains/cat.sx9.json new file mode 100644 index 000000000..8146434ae --- /dev/null +++ b/domains/cat.sx9.json @@ -0,0 +1,13 @@ +{ + "description": "SX's Cat Discord Bot Website", + "repo": "SX-9/sx-discord-bot", + "owner": { + "username": "SX-9", + "twitter": "SX_Discord", + "discord": "SX-Spy-Agent#1377", + "email": "sx-91@outlook.com" + }, + "record": { + "CNAME": "20919506-c6ad-42e9-80a8-a027c160e702.id.repl.co" + } +} 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 new file mode 100644 index 000000000..df92732a6 --- /dev/null +++ b/domains/cdn.alpha.json @@ -0,0 +1,12 @@ +{ +"repo": "https://github.com/YouFoundAlpha/cdn", + "owner": { + "username": "YouFoundAlpha", + "email": "", + "twitter": "YouFoundAlpha", + "discord": "YouFoundAlpha#5372" + }, + "record": { +"CNAME": "youfoundalpha.github.io" + } +} diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json new file mode 100644 index 000000000..f40f0de31 --- /dev/null +++ b/domains/cdn.arman.json @@ -0,0 +1,10 @@ +{ + "description": "Arman's content delivery network", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.is-a.dev" + }, + "record": { + "CNAME": "23f4d8ed-6b28-4e13-a9e9-bd913bbb2040.id.repl.co" + } +} diff --git a/domains/cdn.badboy.json b/domains/cdn.badboy.json index 7ec332465..eeed68a07 100644 --- a/domains/cdn.badboy.json +++ b/domains/cdn.badboy.json @@ -6,6 +6,6 @@ "email": "contact@mail.badboy.is-a.dev" }, "record": { - "CNAME": "a322b85b-dae2-4ae1-87b4-4d75db26c7e5.id.repl.co" + "CNAME": "bad-boy-codes.github.io" } } diff --git a/domains/ceon.json b/domains/ceon.json new file mode 100644 index 000000000..c700b6212 --- /dev/null +++ b/domains/ceon.json @@ -0,0 +1,11 @@ +{ + "description": "Hey, I am Ceon!", + "repo": "https://github.com/internetmagduru", + "owner": { + "username": "internetmagduru", + "email": "ceon@ceon.tech" + }, +"record": { + "URL": "https://ceon.tech" + } +} 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/charcg.json b/domains/charcg.json new file mode 100644 index 000000000..f49dbde7e --- /dev/null +++ b/domains/charcg.json @@ -0,0 +1,12 @@ +{ + "description": "CharCG's Website", + "repo": "https://github.com/charcg/charcg.github.io", + "owner": { + "username": "CharCG", + "email": "charlescong91@gmail.com", + "twitter": "charlescong91" + }, + "record": { + "CNAME": "charcg.github.io" + } +} diff --git a/domains/chat-with.sx9.json b/domains/chat-with.sx9.json index 8ef9daf5d..9fc0ab82d 100644 --- a/domains/chat-with.sx9.json +++ b/domains/chat-with.sx9.json @@ -1,4 +1,3 @@ - { "owner": { "username": "SX-9", @@ -8,4 +7,4 @@ "CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co" } } - \ No newline at end of file + 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/ck.json b/domains/ck.json new file mode 100644 index 000000000..814ca4948 --- /dev/null +++ b/domains/ck.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/plu5/plu5.github.io", + "owner": { + "username": "plu5", + "email": "ctre@users.sourceforge.net", + "twitter": "preminster" + }, + "record": { + "CNAME": "plu5.github.io" + } +} diff --git a/domains/daddy.json b/domains/daddy.json new file mode 100644 index 000000000..d7c019181 --- /dev/null +++ b/domains/daddy.json @@ -0,0 +1,13 @@ +{ + "description": "Redirect to daddy mahir's website", + "repo": "https://github.com/mtgsquad", + "owner": { + "username": "mtgsquad", + "email": "mahir@molai.dev", + "twitter": "DevMolai", + "discord": "molai.dev#2674" + }, + "record": { + "URL": "https://molai.dev" + } +} diff --git a/domains/daniel4-dev.json b/domains/daniel4-dev.json index d9a6e6ad6..cde7863e7 100644 --- a/domains/daniel4-dev.json +++ b/domains/daniel4-dev.json @@ -5,6 +5,8 @@ "email": "llama552621@gmail.com" }, "record": { - "CNAME": "daniel4-scratch.gamejolt.io" + "A": [ + "52.54.56.45" + ] } } 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/demonitize.json b/domains/demonitize.json new file mode 100644 index 000000000..4eafedaf9 --- /dev/null +++ b/domains/demonitize.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "demonitize", + "email": "", + "twitter": "demonitized_boi", + "twitch": "demonitized_boi", + "discord": "DEMONITIZED BOI#6969" + }, + "description": "Probably will use this to redirect to GitHub, because custom domain look cool", + "repo": "https://github.com/demonitize", + "record": { + "URL": "https://github.com/demonitize", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/den.json b/domains/den.json new file mode 100644 index 000000000..50b7996cc --- /dev/null +++ b/domains/den.json @@ -0,0 +1,12 @@ +{ + "description": "This domain (den.is-a.dev) is used for blogging by Denver", + "repo": "", + "owner": { + "username": "DenStudies7700", + "discord": "ImDenver#7700", + "email": "" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/denver.json b/domains/denver.json new file mode 100644 index 000000000..115485745 --- /dev/null +++ b/domains/denver.json @@ -0,0 +1,12 @@ +{ + "description": "This domain (denver.is-a.dev) is used for scripting Denver's bio and as a portfolio", + "repo": "https://github.com/DenStudies7700/DenStudies7700.github.io", + "owner": { + "username": "DenStudies7700", + "discord": "ImDenver#7700", + "email": "" + }, + "record": { + "CNAME": "densite-development-7700.up.railway.app" + } +} diff --git a/domains/developer.json b/domains/developer.json new file mode 100644 index 000000000..3e2cd1158 --- /dev/null +++ b/domains/developer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saharsh1223", + "email": "psaharsh2@gmail.com" + }, + "record": { + "CNAME": "sup4321.github.io" + } +} diff --git a/domains/dexo.json b/domains/dexo.json new file mode 100644 index 000000000..026a9312d --- /dev/null +++ b/domains/dexo.json @@ -0,0 +1,15 @@ +{ + "description": "Ce cauti ma aici?", + "owner": { + "username": "DeXoHigh", + "email": "dexocash@gmail.com" + }, + "record": { + "A": ["185.141.25.116"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} 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 new file mode 100644 index 000000000..1854fa38a --- /dev/null +++ b/domains/dib.json @@ -0,0 +1,13 @@ +{ + "description": "URL Shortener for sites.", + "repo": "https://github.com/DIBSTERYT", + "owner": { + "username": "DIBSTERYT", + "email": "contact@dibster.ml", + "twitter": "DEV_DIBSTER" + }, + "record": { + "A": ["192.95.42.74"], + "TXT": "zoho-verification=zb87142129.zmverify.zoho.eu" + } +} diff --git a/domains/dimszyxx.json b/domains/dimszyxx.json new file mode 100644 index 000000000..d99dca764 --- /dev/null +++ b/domains/dimszyxx.json @@ -0,0 +1,11 @@ +{ + "description": "Dimszyxx Website", + "owner": { + "username": "nobuyaki", + "email": "dimas2214sa@gmail.com", + "discord": "445073800850046977" + }, + "record": { + "CNAME": "6fe0555b-c207-4d0a-bd14-7ba43c32fcff.id.repl.co" + } +} 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/eax.json b/domains/eax.json new file mode 100644 index 000000000..e3af4cf06 --- /dev/null +++ b/domains/eax.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev website of eaxly", + "repo": "https://github.com/eaxly/eaxly.github.io", + "owner": { + "username": "eaxly", + "email": "extinctaxolotl@protonmail.com" + }, + "record": { + "CNAME": "eaxly.github.io" + } +} diff --git a/domains/eclipse.json b/domains/eclipse.json new file mode 100644 index 000000000..b5efee529 --- /dev/null +++ b/domains/eclipse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Just-a-Unity-Dev", + "email": "", + "twitter": "@eclips_e69" + }, + "description": "A little portfolio based with a basic account system for learning purposes.", + "record": { + "CNAME": "eclips-espace-production.up.railway.app" + } +} diff --git a/domains/elias.json b/domains/elias.json new file mode 100644 index 000000000..60f56f91a --- /dev/null +++ b/domains/elias.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website, im learning web dev!", + "repo": "https://github.com/EliasKernel/EliasKernel.github.io", + "owner": { + "username": "eliaskernel", + "email": "eliaskernel@protonmail.com", + "twitter": "eliaskernel" + }, + "record": { + "CNAME": "eliaskernel.github.io" + } +} 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/enzo.json b/domains/enzo.json new file mode 100644 index 000000000..49b8a0170 --- /dev/null +++ b/domains/enzo.json @@ -0,0 +1,11 @@ +{ + "description": "Enzo's portfolio", + "repo": "https://github.com/enzonaute/", + "owner": { + "username": "enzonaute", + "email": "hello@enzonaute.me" + }, + "record": { + "CNAME": "enzonaute.me" + } +} 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/eviternal.json b/domains/eviternal.json new file mode 100644 index 000000000..5ccaa4144 --- /dev/null +++ b/domains/eviternal.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "EviternalOfficial", + "email": "", + "discord": "Vaibhav Kashyap#5747" + }, + "record": { + "A": ["35.186.245.55"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} 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/fourjuaneight.json b/domains/fourjuaneight.json new file mode 100644 index 000000000..2cef409e2 --- /dev/null +++ b/domains/fourjuaneight.json @@ -0,0 +1,11 @@ +{ + "description": "Juan's personal site", + "repo": "https://github.com/fourjuaneight", + "owner": { + "username": "fourjuaneight", + "email": "juan@villela.co" + }, + "record": { + "URL": "https://juanvillela.dev" + } +} diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json new file mode 100644 index 000000000..727b37a31 --- /dev/null +++ b/domains/foxie.arman.json @@ -0,0 +1,16 @@ +{ + "description": "Foxie's Homepage by arman", + "repo": "https://github.com/ItzArman09/foxie.js", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.is-a.dev" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} 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/ghex.json b/domains/ghex.json new file mode 100644 index 000000000..6642b98f8 --- /dev/null +++ b/domains/ghex.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/ghextercortes/ghextercortes.github.io", + "owner": { + "username": "ghextercortes", + "email": "ghextershumies@gmail.com", + "twitter": "CortesGhexter" + }, + "record": { + "CNAME": "ghextercortes.github.io" + } +} diff --git a/domains/git.maskduck.json b/domains/git.maskduck.json new file mode 100644 index 000000000..f93d4f10e --- /dev/null +++ b/domains/git.maskduck.json @@ -0,0 +1,11 @@ +{ + "description": "my git repos", + "owner": { + "username": "MaskDuck", + "email": "maskduckuwu@gmail.com", + "discord": "MaskDuck#7325" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/givinghawk.json b/domains/givinghawk.json new file mode 100644 index 000000000..26b632d07 --- /dev/null +++ b/domains/givinghawk.json @@ -0,0 +1,11 @@ +{ + "description": "My is-a.dev cname record", + "repo": "https://github.com/givinghawk", + "owner": { + "username": "givinghawk", + "email": "gh@givinghawk.xyz" + }, + "record": { + "URL": "https://givinghawk.xyz" + } +} diff --git a/domains/gnanaelisa.json b/domains/gnanaelisa.json new file mode 100644 index 000000000..87e0d2330 --- /dev/null +++ b/domains/gnanaelisa.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/jgnanaelisa/gnanaelisa.github.io", + "owner": { + "username": "jgnanaelisa", + "email": "gnanaelisa@gmail.com" + }, + "record": { + "CNAME": "jgnanaelisa.github.io" + } +} diff --git a/domains/go.avasthi.json b/domains/go.avasthi.json new file mode 100644 index 000000000..89158a2ce --- /dev/null +++ b/domains/go.avasthi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "avasthi-git", + "email": "", + "telegram": "avasthie" + }, + + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/hay.json b/domains/hay.json new file mode 100644 index 000000000..68f02077d --- /dev/null +++ b/domains/hay.json @@ -0,0 +1,11 @@ +{ + "description": "RayhanADev's Website!", + "repo": "https://github.com/rayhanadev/Personal-Website", + "owner": { + "username": "rayhanadev", + "email": "rayhanadev@protonmail.com" + }, + "record": { + "URL": "http://furret.codes" + } +} diff --git a/domains/henrymartin.json b/domains/henrymartin.json new file mode 100644 index 000000000..c2f439d01 --- /dev/null +++ b/domains/henrymartin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HENRYMARTIN5", + "email": "henrysjmartinthesecond@gmail.com" + }, + "record": { + "CNAME": "833145ac-c162-4931-b063-b77d351c829f.id.repl.co" + } +} 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/hmon.json b/domains/hmon.json new file mode 100644 index 000000000..802f8d906 --- /dev/null +++ b/domains/hmon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hackermondev", + "email": "daniel@daniel.is-a.dev" + }, + "record": { + "CNAME": "Ultraviolet-Node-3.hackermondev.repl.co" + } +} diff --git a/domains/hod.json b/domains/hod.json new file mode 100644 index 000000000..cf4c7e60f --- /dev/null +++ b/domains/hod.json @@ -0,0 +1,13 @@ +{ + "description": "hod's primary website.", + "repo": "https://github.com/hodss/hodssxyz", + "owner": { + "username": "hodss", + "email": "hod@hodss.xyz", + "twitter": "@hodss_", + "discord": "hod#2311" + }, + "record": { + "URL": "https://hodss.xyz/?refer=is-a-dev" + } +} diff --git a/domains/iakshay.json b/domains/iakshay.json new file mode 100644 index 000000000..6d86515b0 --- /dev/null +++ b/domains/iakshay.json @@ -0,0 +1,12 @@ +{ + "description": "Hola! This is Akshay's personal website.", + "repo": "https://github.com/akshay1018/akshay1018.github.io", + "owner": { + "username": "Akshay1018", + "email": "ak715173@gmail.com", + "twitter": "@i_Akshay09" + }, + "record": { + "CNAME": "Akshay1018.github.io" + } +} diff --git a/domains/iansalazar.json b/domains/iansalazar.json new file mode 100644 index 000000000..f23e98bd7 --- /dev/null +++ b/domains/iansalazar.json @@ -0,0 +1,11 @@ +{ + "description": "Ian Salazar's portfolio website", + "repo": "https://github.com/dertrockx/freelance-frontend-app", + "owner": { + "username": "dertrockx", + "email": "iansalazar67@gmail.com" + }, + "record": { + "CNAME": "freelance-frontend-app-production.up.railway.app" + } +} diff --git a/domains/icehead.json b/domains/icehead.json new file mode 100644 index 000000000..d68635ea9 --- /dev/null +++ b/domains/icehead.json @@ -0,0 +1,11 @@ +{ + "description": "Domain for my Github Page.", + "repo": "https://github.com/Ice-Head/ice-head.github.io", + "owner": { + "username": "Ice-Head", + "email": "heads.ice@protonmail.com" + }, + "record": { + "CNAME": "ice-head.github.io" + } +} diff --git a/domains/imad.json b/domains/imad.json new file mode 100644 index 000000000..a6f00d379 --- /dev/null +++ b/domains/imad.json @@ -0,0 +1,13 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A": [ + "20.101.44.225" + ] + } +} diff --git a/domains/imd.json b/domains/imd.json new file mode 100644 index 000000000..a6f00d379 --- /dev/null +++ b/domains/imd.json @@ -0,0 +1,13 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A": [ + "20.101.44.225" + ] + } +} diff --git a/domains/infinitecode.json b/domains/infinitecode.json index 7fdb52af8..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": { - "CNAME": "panther.brutecdn.eu" + "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/jakehe.json b/domains/jakehe.json new file mode 100644 index 000000000..4691f032e --- /dev/null +++ b/domains/jakehe.json @@ -0,0 +1,12 @@ +{ + "description": "Jake He's Portfolio", + "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio", + "owner": { + "username": "Jakethebest1238", + "email": "jakehe1226@gmail.com", + "twitter": "jakethebest1238" + }, + "record": { + "CNAME": "Jakethebest1238.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/jarmos.json b/domains/jarmos.json new file mode 100644 index 000000000..608589827 --- /dev/null +++ b/domains/jarmos.json @@ -0,0 +1,12 @@ +{ + "description": "A personal blog which is hosted on Medium temporarily.", + "repo": "https://github.com/Jarmos-san/blog", + "owner": { + "username": "Jarmos-san", + "email": "", + "twitter": "Jarmosan" + }, + "record": { + "CNAME": "jarmos.medium.com" + } +} 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/jayesh.json b/domains/jayesh.json new file mode 100644 index 000000000..ed0fcd542 --- /dev/null +++ b/domains/jayesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jayeshsomala", + "email": "jayeshsomala@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } + } \ No newline at end of file diff --git a/domains/jimmster.json b/domains/jimmster.json new file mode 100644 index 000000000..2b7f567e4 --- /dev/null +++ b/domains/jimmster.json @@ -0,0 +1,11 @@ +{ + "description": "A unsusually stupid developers programming blog", + "repo": "https://github.com/Khhs167/jimms-cave", + "owner": { + "username": "Khhs167", + "email": "khhs1671@gmail.com" + }, + "record": { + "URL": "https://jimmys-cave.web.app/" + } +} 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/joel.json b/domains/joel.json new file mode 100644 index 000000000..ab0b03843 --- /dev/null +++ b/domains/joel.json @@ -0,0 +1,12 @@ +{ + "description": "Joel's dev blog", + "repo": "https://github.com/9oelM/9oelm.github.io", + "owner": { + "username": "9oelm", + "email": "", + "twitter": "9oelm" + }, + "record": { + "CNAME": "9oelm.github.io" + } +} \ No newline at end of file diff --git a/domains/jqshuv.json b/domains/jqshuv.json new file mode 100644 index 000000000..aa2341712 --- /dev/null +++ b/domains/jqshuv.json @@ -0,0 +1,12 @@ +{ + "description": "Jqshuv's Portfolio Page", + "repo": "https://github.com/jqshuv/jqshuv.github.io", + "owner": { + "username": "jqshuv", + "email": "jqshuv@gmail.com", + "twitter": "jqshuv" + }, + "record": { + "CNAME": "jqshuv.github.io" + } +} diff --git a/domains/justtobbi.json b/domains/justtobbi.json new file mode 100644 index 000000000..6dea4cd00 --- /dev/null +++ b/domains/justtobbi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website and Portfolio", + "repo": "https://github.com/justTOBBI/justtobbi.github.io", + "owner": { + "username": "justTOBBI", + "email": "justtobbi@gmail.com" + }, + "record": { + "CNAME": "justtobbi.github.io" + } +} \ No newline at end of file diff --git a/domains/k93msy.json b/domains/k93msy.json new file mode 100644 index 000000000..d72cdaf03 --- /dev/null +++ b/domains/k93msy.json @@ -0,0 +1,11 @@ +{ + "description": "K93MSY website", + "repo": "https://github.com/K93MSY/K93MSY.github.io", + "owner": { + "username": "K93MSY", + "email": "kuritama0903@gmail.com" + }, + "record": { + "CNAME": "k93msy.github.io" + } +} diff --git a/domains/keju.json b/domains/keju.json new file mode 100644 index 000000000..b19ed8fdf --- /dev/null +++ b/domains/keju.json @@ -0,0 +1,12 @@ +{ + "description": "Kelvin Julian - Personal Website", + "repo": "https://github.com/kejuuu/kejuuu.github.io", + "owner": { + "username": "kejuuu", + "email": "kelvinjulian.kj@gmail.com", + "twitter": "@Keju__" + }, + "record": { + "CNAME": "kejuuu.github.io" + } +} diff --git a/domains/kenwu.json b/domains/kenwu.json new file mode 100644 index 000000000..83dcbaf90 --- /dev/null +++ b/domains/kenwu.json @@ -0,0 +1,12 @@ +{ + "description": "This is Ken Wu's personal portfolio website.", + "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io", + "owner": { + "username": "KenWuqianghao", + "email": "wooqianghao@gmail.com", + "twitter": "KenWuqianghao" + }, + "record": { + "CNAME": "kenwuqianghao.github.io" + } + } \ No newline at end of file diff --git a/domains/klouqzz.json b/domains/klouqzz.json new file mode 100644 index 000000000..c4df0f69e --- /dev/null +++ b/domains/klouqzz.json @@ -0,0 +1,11 @@ +{ + "description": "Klouqz Website's", + "repo": "https://github.com/klouqzz/klouqzz.github.io", + "owner": { + "username": "klouqzz", + "email": "klouqz@gmail.com" + }, + "record": { + "CNAME": "klouqzz.github.io" + } +} diff --git a/domains/krix.json b/domains/krix.json new file mode 100644 index 000000000..6da0c8a17 --- /dev/null +++ b/domains/krix.json @@ -0,0 +1,15 @@ +{ + "description": "Krix's portfolio", + "owner": { + "username": "Krix12", + "email": "kristjan.kocevar89@gmail.com" + }, + "record": { + "A": ["35.186.245.55"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/kunal.json b/domains/kunal.json new file mode 100644 index 000000000..338b74b09 --- /dev/null +++ b/domains/kunal.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "KunalSingh19", + "email": "KunalSingh19Yt@gmail.com", + "intagram": "it.z_kunal", + "discord": "Kunal#4461" + }, + "description": "I'll probably put some project pages on kunal.is-a.dev.", + "record": { + "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/lenicyl.json b/domains/lenicyl.json new file mode 100644 index 000000000..c56736f56 --- /dev/null +++ b/domains/lenicyl.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Lenicyl", + "discord": "HUT#5940", + "email": "" + }, + "record": { + "CNAME": "lenicyl.github.io" + } +} diff --git a/domains/lilac.json b/domains/lilac.json new file mode 100644 index 000000000..76ce024cf --- /dev/null +++ b/domains/lilac.json @@ -0,0 +1,12 @@ +{ + "description": "ima runnit up til my feet stop, pls god", + "repo": "https://github.com/capoxxo/capoxxo.github.io", + "owner": { + "username": "capoxxo", + "email": "cloudberry1337@gmail.com", + "twitter": "lilachvh" + }, + "record": { + "CNAME": "capoxxo.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/lingle.json b/domains/lingle.json new file mode 100644 index 000000000..05c997414 --- /dev/null +++ b/domains/lingle.json @@ -0,0 +1,12 @@ +{ + "description": "LingleDev's developer site", + "repo": "https://github.com/LingleDev/lingledev.github.io", + "owner": { + "username": "LingleDev", + "email": "gideon.lingle2023@gmail.com", + "twitter": "LingleDev" + }, + "record": { + "CNAME": "lingledev.github.io" + } +} diff --git a/domains/link.alpha.json b/domains/link.alpha.json new file mode 100644 index 000000000..ae11706fb --- /dev/null +++ b/domains/link.alpha.json @@ -0,0 +1,12 @@ +{ +"repo": "https://github.com/YouFoundAlpha/link", + "owner": { + "username": "YouFoundAlpha", + "email": "", + "twitter": "YouFoundAlpha", + "discord": "YouFoundAlpha#5372" + }, + "record": { +"CNAME": "youfoundalpha.github.io" + } +} diff --git a/domains/linkme.noma.json b/domains/linkme.noma.json new file mode 100644 index 000000000..4c8cdad70 --- /dev/null +++ b/domains/linkme.noma.json @@ -0,0 +1,10 @@ +{ + "description": "A website for my bit.ly clone LinkMe", + "owner": { + "username": "Noma4321", + "email": "noma4321business@gmail.com" + }, + "record": { + "CNAME": "d6bddc39-8514-4494-9b17-d80409cfcbee.id.repl.co" + } +} 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/local.jj.json b/domains/local.jj.json new file mode 100644 index 000000000..4f4a6b048 --- /dev/null +++ b/domains/local.jj.json @@ -0,0 +1,10 @@ +{ + "description": "my playit.gg ip", + "owner": { + "username": "TheBotlyNoob", + "email": "jj@jj.is-a.dev" + }, + "record": { + "A": ["147.185.221.193"] + } +} diff --git a/domains/logskele.json b/domains/logskele.json new file mode 100644 index 000000000..296981aa4 --- /dev/null +++ b/domains/logskele.json @@ -0,0 +1,11 @@ +{ + "description": "my portfolio :|", + "repo": "https://github.com/LogSkele/LogSkele.github.io", + "owner": { + "username": "LogSkele", + "email": "keystove@gmail.com" + }, + "record": { + "CNAME": "LogSkele.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-noma.json b/domains/mail-noma.json new file mode 100644 index 000000000..3d35217dd --- /dev/null +++ b/domains/mail-noma.json @@ -0,0 +1,14 @@ +{ + "description": "A Subdomain For Mails!!", + "owner": { + "username": "Noma4321", + "email": "Noma4321business@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.arman.json b/domains/mail.arman.json new file mode 100644 index 000000000..3c4a641a5 --- /dev/null +++ b/domains/mail.arman.json @@ -0,0 +1,21 @@ +{ +"owner": { +"username": "arman", +"github": "ItzArman09", +"email": "contact@mail.arman.is-a.dev" +}, +"repo": "https://github.com/ItzArman09/mail.git", +"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/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/mail.boolean44.json b/domains/mail.boolean44.json new file mode 100644 index 000000000..2a1b53d1d --- /dev/null +++ b/domains/mail.boolean44.json @@ -0,0 +1,12 @@ + +{ + "owner": { + "username": "boolean44-repos", + "email": "serenitypalmer10@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."], + "A": ["10.0.0.1"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/manash.json b/domains/manash.json new file mode 100644 index 000000000..bd5c50311 --- /dev/null +++ b/domains/manash.json @@ -0,0 +1,11 @@ +{ + "description": "Manash Sonowal - DEV", + "repo": "https://github.com/msonowal", + "owner": { + "username": "msonowal", + "email": "manash149@gmail.com" + }, + "record": { + "CNAME": "www.claritytech.io" + } +} diff --git a/domains/manjushri.json b/domains/manjushri.json new file mode 100644 index 000000000..8084bbe2d --- /dev/null +++ b/domains/manjushri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "manjushri", + "email": "btinformativemessenger@gmail.com", + "telegram": "dreynakchung" + }, + "record": { + "URL": "https://www.manjushri.dev" + } +} 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 49b8da9a6..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": "a.redirect.pizza" + "CNAME": "maskduck.pages.dev" } } diff --git a/domains/massick.json b/domains/massick.json index 840274f70..a3d7c1c44 100644 --- a/domains/massick.json +++ b/domains/massick.json @@ -6,6 +6,6 @@ }, "repo": "https://github.com/M4ss1ck/massick-portfolio", "record": { - "URL": "https://massick.netlify.app/" + "URL": "https://massick.gatsbyjs.io/" } } diff --git a/domains/match.json b/domains/match.json new file mode 100644 index 000000000..c8a235d21 --- /dev/null +++ b/domains/match.json @@ -0,0 +1,14 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89/match", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A" : ["185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153"] + } +} diff --git a/domains/milan090.json b/domains/milan090.json new file mode 100644 index 000000000..81f70ac74 --- /dev/null +++ b/domains/milan090.json @@ -0,0 +1,11 @@ +{ + "description": "I'm a student, but who are you 🔫", + "repo": "https://github.com/milan090", + "owner": { + "username": "milan090", + "email": "milanmuhammed1@gmail.com" + }, + "record": { + "URL": "https://milan090.me/" + } +} diff --git a/domains/minhh2792.json b/domains/minhh2792.json new file mode 100644 index 000000000..b53924d88 --- /dev/null +++ b/domains/minhh2792.json @@ -0,0 +1,12 @@ +{ + "description": "minhh2792's personal website", + "repo": "https://github.com/minhh2792/minhh2792.github.io", + "owner": { + "username": "minhh2792", + "email": "minhh2792.work@gmail.com", + "twitter": "minhh2792" + }, + "record": { + "CNAME": "minhh2792.github.io" + } + } \ No newline at end of file diff --git a/domains/mousemoosz.json b/domains/mousemoosz.json index 66c9d6b76..e18c837ff 100644 --- a/domains/mousemoosz.json +++ b/domains/mousemoosz.json @@ -5,6 +5,16 @@ "email": "mousemoosz@protonmail.com" }, "record": { - "CNAME": "mousemoosz.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/mrshoe.json b/domains/mrshoe.json index bd37e91b6..6562e9777 100644 --- a/domains/mrshoe.json +++ b/domains/mrshoe.json @@ -6,6 +6,6 @@ "email": "mrshoeshoe66@gmail.com" }, "record": { - "CNAME": "mrshoe-development.github.io" + "URL": "https://mrshoe.dev" } } 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/neko7sora.json b/domains/neko7sora.json new file mode 100644 index 000000000..a06a29f14 --- /dev/null +++ b/domains/neko7sora.json @@ -0,0 +1,13 @@ +{ + "description": "Neko7sora personal website", + "repo": "https://github.com/Neko7sora/Neko7sora.github.io", + "owner": { + "username": "Neko7sora", + "email": "", + "twitter": "Neko7sora", + "keybase": "neko7sora" + }, + "record": { + "CNAME": "neko7sora.github.io" + } +} 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 47a29e1aa..5a7933105 100644 --- a/domains/nine.json +++ b/domains/nine.json @@ -2,7 +2,13 @@ "description": "A passionate Back and Front-end Developer 🚀 Having An Experience Of Building Web And Discord Bots With JavaScript / HTML / CSS / Nodejs / Python And Some Other Cool Libraries And Frameworks.", "repo": "https://github.com/ninelel", "record": { - "CNAME": "c7fddd40-732e-4b19-8a94-80edfaf0c369.id.repl.co" + "A": [ + "66.118.232.103" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] }, "owner": { "username": "NineLEL", 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/node-appwrite.json b/domains/node-appwrite.json new file mode 100644 index 000000000..b27b753f9 --- /dev/null +++ b/domains/node-appwrite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "appwrite", + "email": "mohamed.haneefa@agiratech.com" + }, + "record": { + "URL": "https://www.appwrite-node.com/" + } +} 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/nziie.json b/domains/nziie.json new file mode 100644 index 000000000..fe0efd19c --- /dev/null +++ b/domains/nziie.json @@ -0,0 +1,11 @@ +{ + "description": "Nziie's Developer Website", + "repo": "https://github.com/Nziie3/nziie3.github.io", + "owner": { + "username": "Nziie3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "nziie3.github.io" + } +} diff --git a/domains/om.json b/domains/om.json new file mode 100644 index 000000000..329c4adaf --- /dev/null +++ b/domains/om.json @@ -0,0 +1,16 @@ +{ + "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", + "owner": { + "username": "omxpro", + "email": "omsenjalia@gmail.com", + "twitter": "DaRealOmxpro" + }, + "record": { + "A": ["198.27.83.178"], + "A": ["192.95.42.74"], + "A": ["15.235.140.225"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/omen.json b/domains/omen.json new file mode 100644 index 000000000..7d2009b02 --- /dev/null +++ b/domains/omen.json @@ -0,0 +1,11 @@ +{ + "description": "Im a nerd", + "repo": "https://github.com/OmenDoesStuff/omendoesstuff.github.io", + "owner": { + "username": "OmenDoesStuff", + "email": "omen@dashpvp.net" + }, + "record": { + "CNAME": "omendoesstuff.github.io" + } + } 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/moon.json b/domains/pansy.json similarity index 53% rename from domains/moon.json rename to domains/pansy.json index 83cf5dbe0..927f76798 100644 --- a/domains/moon.json +++ b/domains/pansy.json @@ -1,9 +1,9 @@ { "owner": { - "username": "moon-moon27", + "username": "pansy27", "email": "uselessshogun99@gmail.com" }, "record": { - "CNAME": "moon-moon27.github.io" + "CNAME": "pansy27.github.io" } } diff --git a/domains/papyrus.json b/domains/papyrus.json new file mode 100644 index 000000000..d9ff0c33d --- /dev/null +++ b/domains/papyrus.json @@ -0,0 +1,11 @@ +{ + "description": "Howdy I'm Papyrus and I created this is website", + "repo": "https://github.com/Papyrus0444/papyrus0444.github.io", + "owner": { + "username": "Papyrus0444", + "email": "vladbogdanmicu@gmail.com" +}, + "record": { + "CNAME": "papyrus0444.github.io" + } +} diff --git a/domains/kaskus.json b/domains/paul.json similarity index 53% rename from domains/kaskus.json rename to domains/paul.json index 5ebd952d5..4c0dc502d 100644 --- a/domains/kaskus.json +++ b/domains/paul.json @@ -1,13 +1,11 @@ { "description": "My Personal Landing Page!", - "repo": "https://github.com/KASKUSTTV", + "repo": "https://github.com/NotKaskus", "owner": { - "username": "KASKUSTTV", + "username": "NotKaskus", "email": "kaskus45@protonmail.com" }, "record": { - "A": [ - "164.132.74.251" - ] + "CNAME": "notkaskus.github.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/pinont.json b/domains/pinont.json new file mode 100644 index 000000000..ebeb0fd4c --- /dev/null +++ b/domains/pinont.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Web.", + "repo": "https://github.com/PinozenTH/PinozenTH.github.io", + "owner": { + "username": "PinozenTH", + "email": "Pinozen.Thailand@gmail.com" + }, + "record": { + "CNAME": "PinozenTH.github.io" + } +} diff --git a/domains/pirate-project.json b/domains/pirate-project.json new file mode 100644 index 000000000..85711ef02 --- /dev/null +++ b/domains/pirate-project.json @@ -0,0 +1,12 @@ +{ + "description": "Pirate-Teams server", + "owner": { + "username": "StalkerMeyr", + "email": "andchit223@gmail.com" + }, + "record": { + "A": [ + "185.87.50.120" + ] + } +} diff --git a/domains/polopro.json b/domains/polopro.json new file mode 100644 index 000000000..fbfac54f5 --- /dev/null +++ b/domains/polopro.json @@ -0,0 +1,11 @@ +{ + "description": "polo pro", + "repo": "https://github.com/polo-1245-oficial/polo-1245-oficial.github.io", + "owner": { + "username": "polo-1245-oficial", + "email": "contacto@polo1245.es" + }, + "record": { + "CNAME": "polo-1245-oficial.github.io" + } +} diff --git a/domains/portal-slot-gacor.json b/domains/portal-slot-gacor.json new file mode 100644 index 000000000..2c890b57b --- /dev/null +++ b/domains/portal-slot-gacor.json @@ -0,0 +1,11 @@ +{ + "description": "Demo Spining wheeles slot Gacor", + "repo": "https://github.com/cewemanja/portal-slot-gacor", + "owner": { + "username": "cewemanja", + "email": "slotgacor@id123.uno" + }, + "record": { + "URL": "https://cewemanja.github.io/portal-slot-gacor/" + } +} diff --git a/domains/potatoland4492.json b/domains/potatoland4492.json new file mode 100644 index 000000000..8f3f2255f --- /dev/null +++ b/domains/potatoland4492.json @@ -0,0 +1,11 @@ +{ + "description": "A personal site for all my projects.", + "repo": "https://github.com/potatoland4492/potatoland4492.github.io", + "owner": { + "username": "potatoland4492", + "email": "potatoland4492@gmail.com" + }, + "record": { + "CNAME": "potatoland4492.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/pybash.json b/domains/pybash.json new file mode 100644 index 000000000..76b0cfea3 --- /dev/null +++ b/domains/pybash.json @@ -0,0 +1,11 @@ +{ + "description": "PyBash's Personal Website", + "repo": "https://github.com/pybash1", + "owner": { + "username": "pybash1", + "email": "dontwanttotell@privacy.com" + }, + "record": { + "URL":"https://pybash.vercel.app" + } +} 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/rahulcodes.json b/domains/rahulcodes.json new file mode 100644 index 000000000..690c05eb0 --- /dev/null +++ b/domains/rahulcodes.json @@ -0,0 +1,11 @@ +{ + "description": "Rahul Bussa's Portfolio", + "repo": "https://github.com/bussarahul/rahulcodes", + "owner": { + "username": "rahulcodes", + "email": "rahulbussa@outlook.com" + }, + "record": { + "CNAME": "bussarahul.github.io" + } +} diff --git a/domains/raid.json b/domains/raid.json new file mode 100644 index 000000000..32d6d9ba4 --- /dev/null +++ b/domains/raid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ImRaid", + "email": "romanplayer76@gmail.com" + }, + "record": { + "CNAME": "f8d83b65-6aa3-47dd-952f-95b1a52eadb4.id.repl.co" + } +} 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/ravost.json b/domains/ravost.json index 711cf2d98..a23839f76 100644 --- a/domains/ravost.json +++ b/domains/ravost.json @@ -6,6 +6,6 @@ }, "description": "Ravost99's Personal website", "record": { - "CNAME": "4abcf89f-23de-4278-8310-3687c58c8f7a.id.repl.co" + "CNAME": "ff6546d8-ce57-4f83-bff1-de3fdf47f30f.id.repl.co" } } diff --git a/domains/raw-kirito.json b/domains/raw-kirito.json new file mode 100644 index 000000000..6c1555378 --- /dev/null +++ b/domains/raw-kirito.json @@ -0,0 +1,10 @@ +{ + "description": "this a link to My Raw Web Github", + "owner": { + "username": "ThisMe124", + "email": "anonymous.orgn@gmail.com" + }, + "record": { + "CNAME": "thisme124.github.io" + } +} diff --git a/domains/ray.json b/domains/ray.json index 651c61789..68f02077d 100644 --- a/domains/ray.json +++ b/domains/ray.json @@ -1,11 +1,11 @@ { "description": "RayhanADev's Website!", - "repo": "https://github.com/rayhanadev/my-website", + "repo": "https://github.com/rayhanadev/Personal-Website", "owner": { "username": "rayhanadev", "email": "rayhanadev@protonmail.com" }, "record": { - "URL": "http://rayhanadev.vercel.app" + "URL": "http://furret.codes" } } 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/reefsalty.json b/domains/reefsalty.json new file mode 100644 index 000000000..e4c3d8e64 --- /dev/null +++ b/domains/reefsalty.json @@ -0,0 +1,12 @@ +{ + "description": "ReefSalty", + "repo": "https://github.com/github-username/ReefSalty.github.io", + "owner": { + "username": "ReefSalty", + "email": "reefsalter@hotmail.com", + "twitter": "ReefSalty" + }, + "record": { + "CNAME": "reefsalty.github.io" + } +} 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 new file mode 100644 index 000000000..46bd479f5 --- /dev/null +++ b/domains/rennaru.json @@ -0,0 +1,12 @@ +{ + "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/riskybot.riskymh.json b/domains/riskybot.riskymh.json new file mode 100644 index 000000000..43c6e40ae --- /dev/null +++ b/domains/riskybot.riskymh.json @@ -0,0 +1,13 @@ +{ + "description": "Discord Bot Website", + "repo": "https://github.com/RiskyMH/RiskyBOT", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io/RiskyBOT" + } + } + \ No newline at end of file diff --git a/domains/riskybotredirect.json b/domains/riskybotredirect.json new file mode 100644 index 000000000..43c6e40ae --- /dev/null +++ b/domains/riskybotredirect.json @@ -0,0 +1,13 @@ +{ + "description": "Discord Bot Website", + "repo": "https://github.com/RiskyMH/RiskyBOT", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io/RiskyBOT" + } + } + \ No newline at end of file diff --git a/domains/riskymh.json b/domains/riskymh.json new file mode 100644 index 000000000..eb528575d --- /dev/null +++ b/domains/riskymh.json @@ -0,0 +1,14 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/RiskyMH/RiskyMH.github.io", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io", + "MX": ["rocky.smtp-in.mailway.app", "peter.smtp-in.mailway.app"] + } + } + \ No newline at end of file diff --git a/domains/riskymhredirect.json b/domains/riskymhredirect.json new file mode 100644 index 000000000..1dda90136 --- /dev/null +++ b/domains/riskymhredirect.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/RiskyMH/RiskyMH.github.io", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.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/roreef.json b/domains/roreef.json new file mode 100644 index 000000000..8a56cfab8 --- /dev/null +++ b/domains/roreef.json @@ -0,0 +1,12 @@ +{ + "description": "roreef personal website", + "repo": "https://github.com/reef1447/reef1447.github.io", + "owner": { + "username": "reef1447", + "email": "spray123kira@gmail.com", + "discord": "ro-reef#8899" + }, + "record": { + "CNAME": "reef1447.github.io" + } +} 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/ryan.json b/domains/ryan.json new file mode 100644 index 000000000..01d5c9bd1 --- /dev/null +++ b/domains/ryan.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev domain", + "repo": "https://github.com/ryan0204", + "owner": { + "username": "Ryan0204", + "email": "ryan@ssrv.xyz" + }, + "record": { + "URL": "https://ssrv.xyz" + } +} diff --git a/domains/sages.semant.json b/domains/sages.semant.json new file mode 100644 index 000000000..0e9964b92 --- /dev/null +++ b/domains/sages.semant.json @@ -0,0 +1,12 @@ +{ + "description": "A little show-off project for my school", + "owner": { + "username": "bad-boy-codes", + "email": "contact@mail.badboy.is-a.dev", + "discord": "445073800850046977", + "twitter": "BadBoyGoesBrr" + }, + "record": { + "CNAME": "4941ff85-bc0d-4af7-b112-bc556c694343.id.repl.co" + } +} diff --git a/domains/saharsh.json b/domains/saharsh.json new file mode 100644 index 000000000..652fa8bda --- /dev/null +++ b/domains/saharsh.json @@ -0,0 +1,12 @@ +{ + "description": "My portofilio!", + "repo": "https://github.com/Saharsh1223/saharsh1223.github.io", + "owner": { + "username": "Saharsh1223", + "email": "psaharsh2@gmail.com", + "twitter": "saharsh1223" + }, + "record": { + "CNAME": "saharsh1223.github.io" + } +} diff --git a/domains/samdev.json b/domains/samdev.json deleted file mode 100644 index eae00f8c7..000000000 --- a/domains/samdev.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "SamDev-7", - "email": "", - "discord": "SamDev7#1767" - }, - "record": { - "URL": "https://samdev.gq" - } -} diff --git a/domains/samet.json b/domains/samet.json new file mode 100644 index 000000000..b4951720e --- /dev/null +++ b/domains/samet.json @@ -0,0 +1,14 @@ +{ + "description": "This is a portfolio for me, SmugTheKiler, but is based off a template.", + "repo": "https://github.com/sa-met/sa-met.github.io", + "owner": { + "username": "Samett", + "email": "sametak3210@gmail.com", + "discord": "Samett#8519", + "discordID": "894594782897262635" + }, + + "record": { + "CNAME": "sa-met.github.io" + } +} diff --git a/domains/samirpaul.json b/domains/samirpaul.json new file mode 100644 index 000000000..8b1ee4b58 --- /dev/null +++ b/domains/samirpaul.json @@ -0,0 +1,12 @@ +{ + "description": "Samir Paul's Portfolio Website.", + "repo": "https://github.com/SamirPaul1/samirpaul", + "owner": { + "username": "SamirPaul1", + "email": "samirpaulb@gmail.com", + "twitter": "SamirPaulb" + }, + "record": { + "CNAME": "samirpaul1.github.io" + } +} diff --git a/domains/saml.json b/domains/saml.json new file mode 100644 index 000000000..161c827ff --- /dev/null +++ b/domains/saml.json @@ -0,0 +1,22 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/SamDev-7/samdev-7.github.io", + "owner": { + "username": "SamDev-7", + "email": "", + "discord": "SamDev7#1767" + }, + "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/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/sathish.json b/domains/sathish.json new file mode 100644 index 000000000..fbd4cccc9 --- /dev/null +++ b/domains/sathish.json @@ -0,0 +1,11 @@ +{ + "description": "My personal dev blog", + "repo": "https://github.com/Muppidathi-sys/Muppidathi-sys.github.io", + "owner": { + "username": "Muppidathi-sys", + "email": "muppidathi00@gmail.com" + }, + "record": { + "CNAME": "Muppidathi-sys.github.io" + } +} diff --git a/domains/sevu.badboy.json b/domains/sevu.badboy.json new file mode 100644 index 000000000..94f12298e --- /dev/null +++ b/domains/sevu.badboy.json @@ -0,0 +1,10 @@ +{ + "description": "sevu bot dashboard", + "owner": { + "username": "bad-boy-codes", + "email": "contact@mail.badboy.is-a.dev" + }, + "record": { + "CNAME": "51deae26-9fa3-4344-820e-80cb006634ca.id.repl.co" + } +} diff --git a/domains/shin.json b/domains/shin.json new file mode 100644 index 000000000..0cf88ec7c --- /dev/null +++ b/domains/shin.json @@ -0,0 +1,12 @@ +{ + "description": "The offcial website by Tachibana Shin (@tachib_shin)", + "repo": "https://github.com/tachibana-shin/tachibana-shin.github.io", + "owner": { + "username": "tachibana-shin", + "email": "", + "twitter": "tachib_shin" + }, + "record": { + "CNAME": "tachibana-shin.github.io" + } +} diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json new file mode 100644 index 000000000..4762d7782 --- /dev/null +++ b/domains/sirmacr0.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website for me", + "repo": "https://github.com/SirMacr0/SirMacr0.github.io", + "owner": { + "username": "SirMacr0", + "email": "tunagunduz03@gmail.com" + }, + "record": { + "CNAME": "SirMacr0.github.io" + } +} diff --git a/domains/rim.json b/domains/slime.json similarity index 51% rename from domains/rim.json rename to domains/slime.json index c91794581..00a7810c8 100644 --- a/domains/rim.json +++ b/domains/slime.json @@ -1,9 +1,9 @@ { "owner": { - "username": "R-Rim", + "username": "purpleblueslime", "email": "purpleblueslime@gmail.com" }, "record": { - "CNAME": "r-rim.github.io" + "CNAME": "purpleblueslime.github.io" } } diff --git a/domains/sonicx180.json b/domains/sonicx180.json new file mode 100644 index 000000000..6fa70727e --- /dev/null +++ b/domains/sonicx180.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/sonicx180/website", + "owner": { + "username": "sonicx180", + "email": "chetanzeogu410@gmail.com" + }, + "record": { + "CNAME": "0146e66a-6183-424c-85bd-b240bea14f14.id.repl.co" + } +} 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/spicyaxolotl.json b/domains/spicyaxolotl.json new file mode 100644 index 000000000..fd548abf4 --- /dev/null +++ b/domains/spicyaxolotl.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/Spicy-Axolotl/spicy-axolotl.github.io", + "owner": { + "username": "Spicy-Axolotl", + "email": "", + "discord": "Axolotl (mycoolface256)#4736" + }, + "record": { + "CNAME": "spicy-axolotl.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/spud.json b/domains/spud.json new file mode 100644 index 000000000..07811ea16 --- /dev/null +++ b/domains/spud.json @@ -0,0 +1,11 @@ +{ + "description": "My own personal portfolio as a developer", + "repo": "https://github.com/MrPotato30/mrotato30.github.io", + "owner": { + "username": "mrpotato30", + "email": "fahrelrizal08@gmail.com" + }, + "record": { + "CNAME": "mrpotato30.github.io" + } +} diff --git a/domains/spyminer.json b/domains/spyminer.json index ada220d56..176fc6bc0 100644 --- a/domains/spyminer.json +++ b/domains/spyminer.json @@ -3,10 +3,9 @@ "repo": "https://github.com/SpyMinerX/SpyMinerX.github.io", "owner": { "username": "SpyMinerX", - "email": "vince051105@icloud.com", - "twitter": "VinceEngelbrec3" + "email": "spyminer@glacierclient.net" }, "record": { - "CNAME": "spyminerx.github.io" + "CNAME": "isadev.engelbrecht.pro" } -} \ No newline at end of file +} 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/starnumber.json b/domains/starnumber.json new file mode 100644 index 000000000..1080ece73 --- /dev/null +++ b/domains/starnumber.json @@ -0,0 +1,9 @@ +{ + "description": "StarNumber's blog", + "repo": "https://github.com/starnumber12046", + "owner": { + "username": "starnumber12046", + "email": "starnumber.official12046@gmail.com" + }, + "record": {"CNAME": "hashnode.network"} +} diff --git a/domains/struc.api.badboy.json b/domains/struc.api.badboy.json new file mode 100644 index 000000000..df47f40f8 --- /dev/null +++ b/domains/struc.api.badboy.json @@ -0,0 +1,10 @@ +{ + "description": "https://badboy.is-a.dev/ redirector", + "owner": { + "username": "bad-boy-codes", + "email": "contact@mail.badboy.is-a.dev" + }, + "record": { + "CNAME": "1c1cdaeb-374d-4273-bd14-b7e96b091f72.id.repl.co" + } +} 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/suryaansh.json b/domains/suryaansh.json new file mode 100644 index 000000000..1ca18f4fc --- /dev/null +++ b/domains/suryaansh.json @@ -0,0 +1,11 @@ +{ + "description": "suryaansh's personal site", + "repo": "https://github.com/suryaanshah/suryaanshah.github.io", + "owner": { + "username": "suryaanshah", + "email": "suryaanshchawla@gmail.com" + }, + "record": { + "CNAME": "suryaanshah.github.io" + } +} diff --git a/domains/suzumi.badboy.json b/domains/suzumi.badboy.json deleted file mode 100644 index c7f7e60ef..000000000 --- a/domains/suzumi.badboy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Suzumi's Dashboard", - "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io", - "owner": { - "username": "bad-boy-codes", - "email": "badboyplays9999@gmail.com" - }, - "record": { - "CNAME": "eae8cbdf-2582-400d-8f63-beef5acd45bb.id.repl.co" - } -} diff --git a/domains/sx9.json b/domains/sx9.json index 6d5750310..a3897de71 100644 --- a/domains/sx9.json +++ b/domains/sx9.json @@ -4,6 +4,7 @@ "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" }, 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/tcdavo.json b/domains/tcdavo.json new file mode 100644 index 000000000..e2e6ec296 --- /dev/null +++ b/domains/tcdavo.json @@ -0,0 +1,10 @@ +{ + "owner":{ + "username": "Tcdavo", + "discord": "FriedUp-_-#6908", + "email": "" + }, + "record": { + "CNAME": "44f0c26f-c6a3-4a32-bd8b-80614d289b24.id.repl.co" + } +} diff --git a/domains/technopaws.json b/domains/technopaws.json new file mode 100644 index 000000000..7c68680ef --- /dev/null +++ b/domains/technopaws.json @@ -0,0 +1,11 @@ +{ + "description": "A PORTFOLIO FOR MYSELF", + "repo": "https://HmmNoSus.realtechnopaws.repl.co", + "owner": { + "username": "TECHNOPAWS", + "email": "technopaws69@gmail.com" + }, + "record": { + "CNAME": "78db877f-0bbd-45b9-9c7d-ad02242a1705.id.repl.co" + } +} diff --git a/domains/techstarmahesh.json b/domains/techstarmahesh.json new file mode 100644 index 000000000..eb7fab1c1 --- /dev/null +++ b/domains/techstarmahesh.json @@ -0,0 +1,11 @@ +{ + "description": "Mahesh Sharma's personal developer website", + "repo": "https://github.com/techstarmahesh/techstarmahesh.github.io", + "owner": { + "username": "TechstarMahesh", + "email": "mistermaheshsharma@gmail.com" + }, + "record": { + "CNAME": "techstarmahesh.github.io" + } + } \ No newline at end of file diff --git a/domains/tekno.json b/domains/tekno.json new file mode 100644 index 000000000..63a41fcfc --- /dev/null +++ b/domains/tekno.json @@ -0,0 +1,14 @@ +{ + "description": "Custom domain for my personal site", + "repo": "https://github.com/TeknoSenpai/teknosenpai.github.io", + "owner": { + "username": "TeknoSenpai", + "email": "tekno@hiri.dev", + "twitter": "@TeknoSenpai" + }, + "record": { + "A": [ + "173.212.245.116" + ] + } +} diff --git a/domains/thecode-breaker.json b/domains/thecode-breaker.json new file mode 100644 index 000000000..d1d9b37ec --- /dev/null +++ b/domains/thecode-breaker.json @@ -0,0 +1,11 @@ +{ + "description": "Link for Adarsh's personal site on GitHub pages", + "repo": "https://github.com/theCode-Breaker/theCode-Breaker.github.io/", + "owner": { + "username": "theCode-Breaker", + "email": "limit6@protonmail.com" + }, + "record": { + "CNAME": "thecode-breaker.github.io" + } +} 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/thorgathis.json b/domains/thorgathis.json new file mode 100644 index 000000000..4680880de --- /dev/null +++ b/domains/thorgathis.json @@ -0,0 +1,11 @@ +{ + "description": "Thorgathis website", + "repo": "https://github.com/Thorgathis/thorgathis.github.io", + "owner": { + "username": "Thorgathis", + "email": "thorgathis.dev@gmail.com" + }, + "record": { + "CNAME": "thorgathis.github.io" + } +} diff --git a/domains/tigerbyte.json b/domains/tigerbyte.json index cc825d941..d4668d8a3 100644 --- a/domains/tigerbyte.json +++ b/domains/tigerbyte.json @@ -6,6 +6,6 @@ "email": "tigerbytedev@gmail.com" }, "record": { - "CNAME": "3bfa06b0-89de-424a-a8ff-ec5a3a38f922.repl.co" + "URL": "https://www.tigerbyte.dev" } } 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/toan.json b/domains/toan.json index 31c0cbca3..bf17a4427 100644 --- a/domains/toan.json +++ b/domains/toan.json @@ -1,11 +1,11 @@ { - "description": "Redirect to my website", + "description": "Hashnode Blog", "repo": "https://github.com/ductoanvo", "owner": { "username": "ductoanvo", - "email": "hey.toan@outlook.com" + "email": "toan@duck.com" }, "record": { - "URL": "https://ductoan.dev" + "CNAME": "hashnode.network" } } diff --git a/domains/tobey.json b/domains/tobey.json new file mode 100644 index 000000000..cae03e4e3 --- /dev/null +++ b/domains/tobey.json @@ -0,0 +1,11 @@ +{ + "description": "Tobey is a dev", + "repo": "https://github.com/yebot", + "owner": { + "username": "yebot", + "email": "tobeyforsman@gmail.com" + }, + "record": { + "URL": "https://twitter.com/TobeyForsman" + } +} \ No newline at end of file diff --git a/domains/turtle84375.json b/domains/turtle84375.json new file mode 100644 index 000000000..0243892b1 --- /dev/null +++ b/domains/turtle84375.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website for Turtle84375", + "repo": "https://github.com/turtle84375/turtle84375.is-a.dev", + "owner": { + "username": "Turtle84375", + "email": "turtle84375@programmer.net", + "guilded": "turtle84375" + }, + "record": { + "CNAME": "turtle84375.github.io" + } +} diff --git a/domains/urduck.json b/domains/urduck.json new file mode 100644 index 000000000..1918d7e4a --- /dev/null +++ b/domains/urduck.json @@ -0,0 +1,15 @@ +{ + "description": "MaskDuck's personal website!", + "repo": "https://github.com/maskducks/maskducks.github.io", + "owner": { + "username": "MaskDuck", + "email": "", + "discord": "MaskDuck#7325", + "twitter": "MaskDuck1", + "reddit": "u/maskduck", + "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" + } +} diff --git a/domains/used-to-be-daddy.json b/domains/used-to-be-daddy.json new file mode 100644 index 000000000..c6884e296 --- /dev/null +++ b/domains/used-to-be-daddy.json @@ -0,0 +1,10 @@ +{ + "description": "I used to be daddy", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "URL": "https://mousemoosz.is-a.dev" + } +} 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/vinayak.json b/domains/vinayak.json new file mode 100644 index 000000000..1e62273c0 --- /dev/null +++ b/domains/vinayak.json @@ -0,0 +1,12 @@ +{ + "description": "Vinayak Kulkarni's Website", + "repo": "https://github.com/vinayakkulkarni/vinayakkulkarni.dev", + "owner": { + "username": "vinayakkulkarni", + "email": "inbox.vinayak@gmail.com", + "twitter": "_vinayak_k" + }, + "record": { + "CNAME": "vinayakkulkarni.dev" + } +} 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/wesley.json b/domains/wesley.json index b0174f94b..38ac78c51 100644 --- a/domains/wesley.json +++ b/domains/wesley.json @@ -6,6 +6,6 @@ "email": "wesley@wmail.eu.org" }, "record": { - "CNAME": "cname.wdns.eu.org" + "CNAME": "cname-alt-mail-server.sv1.wesdns.cf" } } diff --git a/domains/wife.daddy.json b/domains/wife.daddy.json new file mode 100644 index 000000000..3bc54dda2 --- /dev/null +++ b/domains/wife.daddy.json @@ -0,0 +1,10 @@ +{ + "description": "Daddy's wife's website", + "owner": { + "username": "MaskDuck", + "email": "maskduckuwu@gmail.com" + }, + "record": { + "URL": "https://maskduck.is-a.dev" + } +} diff --git a/domains/william.json b/domains/william.json new file mode 100644 index 000000000..e8a991c9c --- /dev/null +++ b/domains/william.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "URL": "https://williamharrison.dev" + } +} diff --git a/domains/win11-tutorial.notaperson535.json b/domains/win11-tutorial.notaperson535.json new file mode 100644 index 000000000..b4219735a --- /dev/null +++ b/domains/win11-tutorial.notaperson535.json @@ -0,0 +1,11 @@ +{ + "description": "Windows 11 in HTML tutorial", + "repo": "https://github.com/notAperson535/Win11-HTML-Tutorial", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } +} diff --git a/domains/wolveslair.alpha.json b/domains/wolveslair.alpha.json new file mode 100644 index 000000000..d5bd9a90f --- /dev/null +++ b/domains/wolveslair.alpha.json @@ -0,0 +1,22 @@ +{ + + "repo": "https://github.com/WolvesLair/wolveslair.github.io", + "owner": { + "username": "WolvesLair", + "email": "wolves.lair@alpha.is-a.dev", + "twitter": "wolveslairdis" + }, + "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/xaxa.json b/domains/xaxa.json new file mode 100644 index 000000000..294789ef7 --- /dev/null +++ b/domains/xaxa.json @@ -0,0 +1,11 @@ +{ + "description": "Xaxa dev Website", + "repo": "https://github.com/333xaxa/333xaxa.github.io", + "owner": { + "username": "333xaxa", + "email": "xaxa_07x10@gmail.com" + }, + "record": { + "CNAME": "333xaxa.github.io" + } +} diff --git a/domains/xuxxi.json b/domains/xuxxi.json new file mode 100644 index 000000000..13593b042 --- /dev/null +++ b/domains/xuxxi.json @@ -0,0 +1,11 @@ +{ + "description": "XUXXI", + "repo": "https://github.com/XUXXI/xuxxi.github.io", + "owner": { + "username": "methaine", + "email": "keter@keemail.me" + }, + "record": { + "CNAME": "xuxxi.github.io" + } +} diff --git a/domains/xyter.json b/domains/xyter.json new file mode 100644 index 000000000..bd1433864 --- /dev/null +++ b/domains/xyter.json @@ -0,0 +1,11 @@ +{ + "description": "Xyter an discord.js bot developed by students.", + "repo": "https://github.com/ZynerOrg/xyter", + "owner": { + "username": "VermiumSifell", + "email": "vermium@zyner.org" + }, + "record": { + "URL": "https://xyter.zyner.org/" + } +} diff --git a/domains/ya.json b/domains/ya.json new file mode 100644 index 000000000..2cf26a0dd --- /dev/null +++ b/domains/ya.json @@ -0,0 +1,12 @@ +{ + "description": "API For My Projects!", + "repo": "https://github.com/icancodebeauty/api", + "owner": { + "username": "icancodebeauty", + "email": "aditya@mail.aditya.is-a.dev", + "twitter": "@CodeWithAadi" + }, + "record": { + "CNAME": "icancodebeauty.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/yuukari.json b/domains/yuukari.json index 759432120..c6ec01c32 100644 --- a/domains/yuukari.json +++ b/domains/yuukari.json @@ -1,11 +1,12 @@ { "description": "My dev homepage, which I have publish info about me, pet/commercial projects, etc.", + "repo": "https://github.com/Yuukari/yuukari.github.io", "owner": { "username": "Yuukari", - "email": "contact@yuukari.is-a.dev", + "email": "yuukarichan@yandex.com", "telegram": "@iamyuukari" }, "record": { - "CNAME": "n93071dj.beget.tech" + "CNAME": "yuukari.github.io" } } \ No newline at end of file diff --git a/domains/zeptar.json b/domains/zeptar.json new file mode 100644 index 000000000..3fa995229 --- /dev/null +++ b/domains/zeptar.json @@ -0,0 +1,13 @@ +{ + "description": "Zeptar's Portofolio", + "repo": "https://github.com/Zeptar1069/zeptar1069.github.io", + "owner": { + "username": "Zeptar1069", + "email": "terryk.onekorea@gmail.com", + "discord": "Zeptar#7882", + "note": "My Discord ID is 893211748767768606" + }, + "record": { + "CNAME": "zeptar1069githubio.zeptar.repl.co" + } +} diff --git a/domains/zishan.json b/domains/zishan.json new file mode 100644 index 000000000..d49be3d94 --- /dev/null +++ b/domains/zishan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "notzishan", + "discord": "LukeLy#8025", + "email": "rizwankhan28081979@gmail.com" + }, + "record": { + "CNAME": "542e524c-fe94-4ee5-b51a-7ef228234d95.id.repl.co" + } +} diff --git a/scripts/register-domains.js b/scripts/register-domains.js index 56a1f2688..370949af6 100644 --- a/scripts/register-domains.js +++ b/scripts/register-domains.js @@ -1,23 +1,37 @@ const R = require('ramda'); -const { VALID_RECORD_TYPES, TTL, ENV } = require('../utils/constants'); +const { VALID_RECORD_TYPES, DOMAIN_HOST_IP, TTL, ENV } = require('../utils/constants'); const { domainService: dc } = require('../utils/domain-service'); const { getDomains: gd } = require('../utils/get-domain'); -// Allow TXT records while publishing (for pcl validation) const getRecords = R.compose(R.toPairs, R.pick(VALID_RECORD_TYPES)); -const toHostList = R.chain(data => { - const rs = getRecords(data.record); +const address = (type, value) => { + if ('URL' === type) return `${value}`.replace(/\/$/g, ''); + if ('TXT' === type) return value; + return (type === 'CNAME' ? `${value}`.toLowerCase() : `${value}`).replace(/[/.]$/g, ''); +}; - return R.chain(([recordType, urls]) => - (Array.isArray(urls) ? urls : [urls]).map((url, index) => ({ +const toHostList = R.chain(data => { + // URL redirection must contain explicit A record + // Wildcard A record breaks when used with MX + // Ref: https://github.com/is-a-dev/register/issues/2365 + if (data.record.URL && data.record.MX) { + data.record.A = [ DOMAIN_HOST_IP ] + } + + const records = getRecords(data.record); + + return R.chain(([recordType, values]) => { + const valueList = Array.isArray(values) ? values : [values]; + + return valueList.map((value, index) => ({ name: data.name, type: recordType, - address: (recordType === 'CNAME' ? `${url}`.toLowerCase() : `${url}`).replace(/\/$/g, ''), + address: address(recordType, value), ttl: TTL, ...(recordType === 'MX' ? { priority: index + 20 } : {}) })) - , rs); + }, records) }); const registerDomains = async ({ domainService, getDomains, log = () => { } }) => { diff --git a/utils/constants.js b/utils/constants.js index 8977f8013..022bd6646 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -12,11 +12,12 @@ const { DOMAIN_DOMAIN, DOMAIN_API_HOST, DOMAIN_API_PORT, + DOMAIN_HOST_IP, } = process.env; const IS_TEST = ENV === 'test'; -const DOMAINS_PATH = require('path').resolve('domains'); +const DOMAINS_PATH = path.resolve('domains'); module.exports = { ENV, @@ -27,6 +28,7 @@ module.exports = { DOMAIN_API_KEY: IS_TEST ? 'testkey' : DOMAIN_API_KEY, DOMAIN_API_HOST: IS_TEST ? 'example.com' : DOMAIN_API_HOST, DOMAIN_API_PORT: IS_TEST ? 6969 : DOMAIN_API_PORT, + DOMAIN_HOST_IP, DOMAINS_PATH, TTL: 5 * 60 * 60, }; diff --git a/utils/domain-service.js b/utils/domain-service.js index 28504f0fd..7829e7431 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -22,15 +22,27 @@ const recordToZone = ({ name, type, address, id, priority }) => ({ ...(type === 'TXT' ? { txtdata: address } : {}), }); -const cleanName = name => name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); +const cleanName = name => + name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); -const zoneToRecord = ({ name, type, cname, address, priority, preference, exchange, record, line: id }) => ({ - id, - name: cleanName(name), - type: `${type}`, - address: `${exchange || cname || address || record}`.replace(/\.$/g, '').toLowerCase(), - priority: priority || preference, -}); +const zoneToRecord = ({ + name, + type, + cname, + address, + priority, + preference, + exchange, + record, + line: id +}) => + ({ + id, + name: cleanName(name), + type: `${type}`, + address: `${exchange || cname || address || record}`.replace(/\.$/g, '').toLowerCase(), + priority: priority || preference, + }); const redirectionToRecord = ({ domain, destination }) => ({ id: domain, name: cleanName(domain), @@ -83,7 +95,7 @@ const getDomainService = ({ cpanel }) => { cpanel.zone.add ), recordToZone, - print(({ name }) => `Adding zone for ${name}...`), + print(r => `Adding zone for ${r.name}: (${r.type} ${r.address})...`), )); const removeZoneRecord = lazyTask(R.compose( R.ifElse(R.propEq('type', 'MX'), @@ -91,7 +103,7 @@ const getDomainService = ({ cpanel }) => { R.compose(cpanel.zone.remove, R.pick(['line'])) ), recordToZone, - print(({ name }) => `Deleting zone for ${name}...`), + print(r => `Deleting zone for ${r.name}: (${r.type} ${r.address})...`), )); const addRedirection = lazyTask(R.compose( cpanel.redirection.add, @@ -121,6 +133,7 @@ const getDomainService = ({ cpanel }) => { const updateHosts = async hosts => { const remoteHostList = await getHosts(); const { add, remove } = diffRecords(remoteHostList, hosts); + console.log(`Adding ${add.length}; Removing ${remove.length}`) await executeBatch([ ...removeRecords(remove),