mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-08-23 00:25:11 +00:00
Merge branch 'is-a-dev:main' into main
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -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 `<your-github-username>.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/<subdomain>.json`) with the following contents
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/<your-github-username>/<your-github-username>.github.io",
|
||||
"owner": {
|
||||
"username": "<your-github-username>",
|
||||
"email": "<your-email>",
|
||||
"twitter": "<your-twitter-username>"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "<replace-this-with-your-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
|
||||
|
||||
@@ -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.
|
||||
|
||||

|
||||
|
||||
3. Click on the **Blog Dashboard** option from the popup modal to access your blog's dashboard.
|
||||
|
||||

|
||||
|
||||
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.
|
||||
|
||||

|
||||
|
||||
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.
|
||||
@@ -1,53 +0,0 @@
|
||||
# For other hosting services
|
||||
|
||||
### Domains file
|
||||
Create a json file inside the `domains` directory (`domains/<subdomain>.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 `<subdomain>.is-a.dev`. If you are unsure how to configure your server, you can create an issue for support.
|
||||
|
||||
You should also, include `<subdomain>.is-a.dev` in your **ssl certificate** to get rid of certificate errors
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Shinyzenith",
|
||||
"email": "xelphlinux@gmail.com"
|
||||
"email": "aakashsensharma@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "shinyzenith.github.io"
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "adistar964",
|
||||
"email": "adistar964@gmail.com"
|
||||
},
|
||||
"description":"this is for my personal website made.",
|
||||
"record": {
|
||||
"CNAME": "adistar964.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Abku personal website.",
|
||||
"repo": "https://github.com",
|
||||
"owner": {
|
||||
"username": "Abku",
|
||||
"email": "abku@abku.xyz"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://abku.xyz"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lukas-batema",
|
||||
"email": "lukasbatema@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://batemadevelopment.com/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Coffeebank",
|
||||
"owner": {
|
||||
"username": "coffeebank",
|
||||
"email": "coffeebank-is-a-dev@catdev.anonaddy.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://coffeebank.github.io"
|
||||
}
|
||||
}
|
||||
+10
-14
@@ -1,14 +1,10 @@
|
||||
{
|
||||
"description": "SX's Discord Server",
|
||||
"repo": "https://sx-9.github.io/sx-discord-redirect",
|
||||
"owner": {
|
||||
"username": "SX-9",
|
||||
"twitter": "SX_Discord",
|
||||
"discord": "SX-Spy-Agent#1377",
|
||||
"email": "sx-91@outlook.com",
|
||||
"note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "sx-9.github.io"
|
||||
}
|
||||
}
|
||||
{
|
||||
"owner": {
|
||||
"username": "SX-9",
|
||||
"email": "satriakrach@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -7,6 +7,7 @@
|
||||
"twitter": "DEV_DIBSTER"
|
||||
},
|
||||
"record": {
|
||||
"A": ["192.95.42.74"]
|
||||
"A": ["192.95.42.74"],
|
||||
"TXT": "zoho-verification=zb87142129.zmverify.zoho.eu"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -7,6 +7,6 @@
|
||||
"twitter": "@jinsoraj"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jinsoraj.eu.org"
|
||||
"URL": "https://jinsoraj.eu.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+2
-4
@@ -1,12 +1,10 @@
|
||||
{
|
||||
"description": "A description",
|
||||
"repo": "https://github.com/kekda-py/kekda-py.github.io",
|
||||
"owner": {
|
||||
"username": "kekda-py",
|
||||
"email": "yashverma7869@gmail.com",
|
||||
"twitter": "your-twitter-username"
|
||||
"twitter": "Yash72274544"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "kekdais-adev-production.up.railway.app"
|
||||
"CNAME": "port-the-folio.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,6 @@
|
||||
"note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "maskducks.github.io"
|
||||
"CNAME": "maskduck.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"repo": "https://github.com/ninelel",
|
||||
"record": {
|
||||
"A": [
|
||||
"23.185.16.239"
|
||||
"66.118.232.103"
|
||||
],
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "andrewstech",
|
||||
"email": "andrew@win11react.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["140.238.66.199"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aeongdesu",
|
||||
"email": "",
|
||||
"revolt": "@Nyan",
|
||||
"discord": "Bread#2635",
|
||||
"note": "discord id: 548821619661864962"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ppy.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+11
-1
@@ -7,6 +7,16 @@
|
||||
"discord": "SamDev7#1767"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "samdev-7.github.io"
|
||||
"A": [
|
||||
"185.199.108.153",
|
||||
"185.199.109.153",
|
||||
"185.199.110.153",
|
||||
"185.199.111.153"
|
||||
],
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
"mx2.improvmx.com"
|
||||
],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsRim",
|
||||
"username": "purpleblueslime",
|
||||
"email": "purpleblueslime@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "itsrim.github.io"
|
||||
"CNAME": "purpleblueslime.github.io"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "mahirmolai27",
|
||||
"email": "mtgissmart@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "is-a-dev-maintainers.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tomgx",
|
||||
"email": "deliveryservice01q@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "tomgx.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "WilliamDavidHarrison",
|
||||
"email": "",
|
||||
"twitter": "WDHarrison09",
|
||||
"discord": "William#0001"
|
||||
"email": "william@williamharrison.dev"
|
||||
},
|
||||
|
||||
"record": {
|
||||
|
||||
@@ -3,10 +3,20 @@
|
||||
"repo": "https://github.com/WolvesLair/wolveslair.github.io",
|
||||
"owner": {
|
||||
"username": "WolvesLair",
|
||||
"email": "wolves.lsir@alpha.is-a.dev",
|
||||
"email": "wolves.lair@alpha.is-a.dev",
|
||||
"twitter": "wolveslairdis"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "wolveslair.github.io"
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user