Merge branch 'main' into main

This commit is contained in:
Abdurrahman075
2021-02-12 17:38:57 +07:00
committed by GitHub
124 changed files with 4490 additions and 3310 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
name: Helper
on:
pull_request_target:
pull_request:
types:
- closed
@@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Comment
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true
if: github.event.action == 'closed' && github.event.pull_request.merged == true
uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -20,4 +20,5 @@ jobs:
const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
if (hasLabel(context, 'domain'))
await instructions(context, github);
console.log('Domain');
await instructions(context, github);
+1 -8
View File
@@ -1,5 +1,5 @@
name: Checks
on: [pull_request_target]
on: [pull_request]
jobs:
validation:
@@ -17,10 +17,3 @@ jobs:
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
label:
runs-on: ubuntu-latest
steps:
- name: Labelling pull request
uses: actions/labeler@main
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+13
View File
@@ -0,0 +1,13 @@
name: Label
on:
schedule:
- cron: "0 * * * *"
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Labelling pull request
uses: actions/labeler@main
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+1 -133
View File
@@ -1,133 +1 @@
# How to register
* First you need to create a pull request with your `domains/my-domain.json` file
* This PR will be reviewed
* The changes will take effect soon after the PR gets merged
* And that's it
### Simple cname record
* A github pages json file will look something like this -
```json
{
"description": "Add some description",
"repo": "https://github.com/github-username",
"owner": {
"username": "github-username",
"email": "any@email"
},
"record": {
"CNAME": "the-domain-you-own.com"
}
}
```
* After the pull request is merged, configure your server (apache, nginx, whatever) to work with `subdomain.is-a.dev`
### For github pages users
* You can take a look at the [github pages guide](https://guides.github.com/features/pages/) if you need help with setting up a website with github pages.
* Your json file will look something like this -
```json
{
"description": "Add some description",
"repo": "https://github.com/github-username/github-username.github.io",
"owner": {
"username": "github-username",
"email": "any@email"
},
"record": {
"CNAME": "github-username.github.io"
}
}
```
* 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
# 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 -
* 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 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 how you want to link to your server/webpage.
Currently, only `CNAME`, `A`, `URL` record types are supported.
Here's a few different use cases for the given record types -
* **CNAME**
CNAME must be a host name (Eg - `something.tld`)
```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"
}
}
```
Moved to [./docs](./docs)
+3 -4
View File
@@ -2,14 +2,13 @@
<br />
is-a-dev is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
**is-a-dev** is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
## How do I register?
* Fork this project
* Add a `your-domain-name.json` new file in `domains/` directory to register `your-domain-name.is-a.dev`
* [Read the docs for information about the json file](./API.md)
* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev`
* [Read the docs](./docs)
* The PR will be reviewed and merged
* After merging, the changes will take effect within a day
* That's it! Done! Now go show off your cool `.is-a.dev` domain
+14
View File
@@ -0,0 +1,14 @@
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-15_x
yarn
dnsutils
certbot
];
in pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}
+7
View File
@@ -0,0 +1,7 @@
# 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 other services](./hosted-at/others.md)
+88
View File
@@ -0,0 +1,88 @@
# 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 -
* 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 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 how you want to link to your server/webpage.
Currently, only `CNAME`, `A`, `URL` record types are supported.
Here's a few different use cases for the given record types -
* **CNAME**
CNAME must be a host name (Eg - `something.tld`)
```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"
}
}
```
+28
View File
@@ -0,0 +1,28 @@
# 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/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
+53
View File
@@ -0,0 +1,53 @@
# 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
+11
View File
@@ -0,0 +1,11 @@
{
"description": "0xflotus' personal developer website",
"repo": "https://github.com/0xflotus/0xflotus.github.io",
"owner": {
"username": "0xflotus",
"email": "0xflotus@gmail.com"
},
"record": {
"CNAME": "0xflotus.github.io"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "http://www.is-a.dev"
}
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A personal portfolio site for all my projects and commissions.",
"repo": "https://github.com/aakhilv/portfolio",
"owner": {
"username": "aakhilv",
"email": "bluninja165@gmail.com",
"twitter": "corruptblu"
},
"record": {
"CNAME": "aakhilv.github.io"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"CNAME": "adarsh-av13.github.io"
}
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"CNAME": "akashmadhu.engineer"
}
}
}
+3 -1
View File
@@ -6,6 +6,8 @@
"email": "anatoliy.poloz@gmail.com"
},
"record": {
"CNAME": "tolyod.github.io"
"A": [
"185.185.71.114"
]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Arthurdw",
"email": "mail@arthurdw.com"
},
"repo": "https://github.com/arthurdw",
"record": {
"URL": "https://www.arthurdw.com"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "augustineaykara@gmail.com"
},
"record": {
"CNAME": "augustine.aykara4.com"
"URL": "http://augustine.aykara4.com"
}
}
+10 -10
View File
@@ -1,11 +1,11 @@
{
"description": "The Interstellar Twilight",
"repo": "https://github.com/avinal/avinal.github.io",
"owner": {
"username": "avinal",
"email": "185067@nith.ac.in"
},
"record": {
"CNAME": "avinal.github.io"
}
}
"description": "The Interstellar Twilight",
"repo": "https://github.com/avinal/avinal.github.io",
"owner": {
"username": "avinal",
"email": "185067@nith.ac.in"
},
"record": {
"CNAME": "avinal.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Awan Shrestha's Site",
"owner": {
"username": "awanshrestha",
"email": "awa1shrestha@gmail.com",
"twitter": "awanshrestha1"
},
"record": {
"CNAME": "awanshrestha.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "bashoudev",
"email": "zionthedev@gmail.com",
"twitter": "bashoudev"
},
"record": {
"CNAME": "bashoudev.ga"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Basils' website",
"repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io",
"owner": {
"username": "LowSpecCorgi",
"email": "haroldthesenpai@gmail.com",
"twitter": "basilicous"
},
"record": {
"CNAME": "LowSpeCorgi.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "thetayloredman",
"email": "",
"telegram": "BadBoyHaloCat"
},
"description": "Personal website",
"record": {
"A": [
"167.172.157.69"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bicepsfako's personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "bicepsfako.netlify.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bots personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "vascular-barnacle-zfdxk5mcunu4qasmwk8n14na.herokudns.com"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Discord Bot's Website",
"owner": {
"username": "brawlie",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "brawlie.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Chandrakant's Work",
"owner": {
"username": "chandrakaant",
"email": "chandrakantpatel23@gmail.com"
},
"record": {
"CNAME": "chandrakaant.github.io"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "Chetan's website",
"repo": "https://github.com/chetanbasuray/chetanbasuray.github.io",
"owner": {
"username": "chetanbasuray",
"email": "basuraychetan@gmail.com"
},
"record": {
"CNAME": "chetanbasuray.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Krchip's develop site",
"repo": "https://github.com/Krchip/Krchip.github.io",
"owner": {
"username": "Krchip",
"email": "elite7744@gmail.com"
},
"record": {
"URL": "https://krchip.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Sly-Little-Fox",
"email": "paranormal.studio123@gmail.com"
},
"record": {
"CNAME": "sly-little-fox.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "My site",
"owner": {
"username": "StalkerMeyr",
"email": "andchit223@gmail.com"
},
"record": {
"A": [
"185.87.48.199"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A website to show off my projects and or just blogs, etc etc.",
"repo": "https://github.com/ZeroTwoDevs/connor.github.io",
"owner": {
"username": "Connor",
"email": "halil_ismail@yahoo.com"
},
"record": {
"CNAME": "connordevs.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dave Bhandari's Portfolio",
"repo": "https://github.com/Davekibh/Davekibh.github.io",
"owner": {
"username": "Davekibh",
"email": "davestephen2002@gmail.com"
},
"record": {
"CNAME": "Davekibh.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Student and developer in the United Kingdom.",
"repo": "https://github.com/ohlookitsderpy",
"record": {
"URL": "https://derpyenterprises.org"
},
"owner": {
"username": "ohlookitsderpy",
"email": "contact@derpyenterprises.org"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dinesh Kumar's personal developer website",
"repo": "https://github.com/dinesh-ysl/dinesh-ysl.github.io",
"owner": {
"username": "dinesh-ysl",
"email": "dseera6@gmail.com"
},
"record": {
"CNAME": "dinesh-ysl.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "a discord bot website",
"repo": "https://github.com/botstudios",
"owner": {
"username": "BotStudios",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "botstudios.github.io"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "dwii5359@azalelnation.com"
},
"record": {
"CNAME": "azn-us.dwii.me"
"URL": "https://github.com/ItzMeDwii"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "DylanK46",
"email": "kainth.dylan@gmail.com"
},
"record": {
"A": [
"90.217.214.245"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dinesh Kumar's personal developer website",
"repo": "https://github.com/eldinesh/eldinesh.github.io",
"owner": {
"username": "eldinesh",
"email": "dseera6@gmail.com"
},
"record": {
"CNAME": "eldinesh.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Elflanded's Development Website.",
"repo": "https://github.com/Elflanded/website",
"owner": {
"username": "Elflanded",
"email": "elflanded@gmail.com"
},
"record": {
"CNAME": "elflanded.github.io"
}
}
+1 -2
View File
@@ -1,4 +1,3 @@
{
"description": "Epic's github",
"repo": "https://github.com/tag-epic",
@@ -9,4 +8,4 @@
"record": {
"URL": "http://github.com/tag-epic"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My portfolio website",
"repo": "https://github.com/Fauzannnnh/website",
"owner": {
"username": "Fauzannnnh",
"email": "fauzan@eenthlh.xyz"
},
"record": {
"URL": "https://eenthlh.xyz"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "https://fayyadh.my.id"
}
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "github-username",
"email": "mail@felixyeung.dev"
},
"repo": "https://github.com/felixyeungdev",
"record": {
"URL": "https://felixyeung.dev"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "aykarageorge@gmail.com"
},
"record": {
"CNAME": "george.aykara4.com"
"URL": "https://george.aykara4.com"
}
}
+1 -3
View File
@@ -4,8 +4,6 @@
"email": "domains@dontsend.me"
},
"record": {
"A": [
"50.116.28.162"
]
"URL": "https://me.getify.com"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "gornostay25",
"email": "volodia.palamar25+github@gmail.com"
},
"record": {
"CNAME": "gornostay25.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Gokul's Personal Site",
"repo": "https://github.com/JavaCafe01/javacafe01.github.io",
"owner": {
"username": "JavaCafe01",
"email": "",
"twitter": "javacafe01"
},
"record": {
"CNAME": "javacafe01.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Portfolio redirect for Hokkqi",
"repo": "https://werewolf.codes",
"owner": {
"username": "hokkqi",
"email": "lio@werewolf.design"
},
"record": {
"URL": "https://werewolf.design"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal Portfolio",
"repo": "https://github.com/irfanbacker/irfanbacker.github.io",
"owner": {
"username": "irfanbacker",
"email": "irfuvk@gmail.com"
},
"record": {
"CNAME": "irfanbacker.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Ishan Goel's personal website (quackduck@github)",
"repo": "https://github.com/quackduck/quackduck.github.io",
"owner": {
"username": "quackduck",
"email": "igoel.mail@gmail.com",
"name": "Ishan Goel"
},
"record": {
"CNAME": "quackduck.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "TheLimifiedLime",
"email": "",
"twitter": "TheLimifiedLime"
},
"description": "I will use this to redirect to my main domain",
"repo": "https://github.com/TheLimifiedLime/issai.club",
"record": {
"URL": "https://issai.club"
}
}
+1 -2
View File
@@ -1,4 +1,3 @@
{
"description": "Vedant Naidu's Portfolio",
"repo": "https://github.com/Flash2014/Flash2014.github.io",
@@ -9,4 +8,4 @@
"record": {
"CNAME": "Flash2014.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Jeff Jessie's Portfolio Website",
"repo": "https://github.com/j3ffjessie/j3ffjessie.github.io",
"owner": {
"username": "j3ffjessie",
"email": "j3ffjessie@protonmail.com"
},
"record": {
"CNAME": "j3ffjessie.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "nythrox",
"email": "jasonsantiagobutler@gmail.com",
"twitter": "nythrox_"
},
"record": {
"URL": "https://jasonbutler.web.app/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "my personal website",
"repo": "https://github.com/teamjoelee/me",
"owner": {
"username": "teamjoelee",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "teamjoelee.github.io"
}
}
+1 -1
View File
@@ -7,4 +7,4 @@
"record": {
"CNAME": "joesbrandt.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal website of Johnson Lee",
"repo": "https://github.com/johnsonlee/johnsonlee.github.io",
"owner": {
"username": "johnsonlee",
"email": "g.johnsonlee@gmail.com"
},
"record": {
"CNAME": "johnsonlee.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Justus-D",
"email": "justus.is-a.dev@herrblauzahn.de"
},
"record": {
"CNAME": "justus-d.github.io"
}
}
+1 -1
View File
@@ -5,6 +5,6 @@
"email": "business@kaguwo.com"
},
"record": {
"CNAME": "kaguwo.com"
"CNAME": "kaguwomin.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Kells is Developer!",
"repo": "https://github.com/jwkim101201/jwkim101201.github.io",
"owner": {
"username": "jwkim101201",
"email": "jwkim101201@gmail.com"
},
"record": {
"CNAME": "jwkim101201.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Khushraj Rathod's personal website.",
"repo": "https://github.com/KhushrajRathod/www.khushrajrathod.com",
"owner": {
"username": "KhushrajRathod",
"email": "me@khushrajrathod.com"
},
"record": {
"URL": "https://www.khushrajrathod.com"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "KobeFF's Portfolio",
"repo": "please get the code from https://its.kobeff.repl.co",
"owner": {
"username": "Kobe523",
"email": "kfni@madison.k12.wi.us"
},
"record": {
"URL": "https://its.kobeff.repl.co"
}
}
+1 -2
View File
@@ -1,6 +1,5 @@
{
"repo": "https://github.com/LeonskiDev/leonskidev.github.io",
"description": "This is my portfolio website, if possible I'll also have bodged.is-a.dev as my blog.",
"repo": "https://github.com/LeonskiDev/leonskidev",
"owner": {
"username": "LeonskiDev",
"email": "bodged@pm.me"
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "LinkerScript",
"email": "min@effobe.com"
},
"record": {
"CNAME": "6498c941-9031-4e57-9fc0-12716fa187f4.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Homepage redirect for Lio",
"repo": "https://werewolf.codes",
"owner": {
"username": "hokkqi",
"email": "lio@werewolf.design"
},
"record": {
"URL": "https://himbo.cat"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "LlamaLad7's personal website",
"repo": "https://github.com/LlamaLad7/llamalad7.github.io",
"owner": {
"username": "LlamaLad7",
"email": "l3gomindstorms@gmail.com"
},
"record": {
"CNAME": "llamalad7.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "magic4me",
"email": "magic4me.info@gmail.com"
},
"record": {
"CNAME": "magic4me.github.io"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "Meong github page using .is-a.dev subdomain",
"repo": "https://github.com/Fauzannnnh/fauzannnnh.github.io",
"owner": {
"username": "Fauzannnnh",
"email": "fauzan@eenthlh.xyz"
},
"record": {
"CNAME": "fauzannnnh.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal blog.",
"repo": "https://github.com/mioscape/mioscape.github.io",
"owner": {
"username": "mioscape",
"email": "mioscape@gmail.com"
},
"record": {
"CNAME": "mioscape.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "6lb",
"email": "6lb@github.io"
},
"record": {
"CNAME": "6lb.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal Page",
"repo": "https://github.com/mrkOS1210/mrkos1210.github.io",
"owner": {
"username": "mrkOS1210",
"email": "72011329+mrkOS1210@users.noreply.github.com"
},
"record": {
"CNAME": "mrkOS1210.github.io"
}
}
+4 -4
View File
@@ -1,11 +1,11 @@
{
"description": "Muchenski's personal developer website",
"repo": "https://github.com/HenriqueMuchenski/henriquemuchenski.github.io",
"repo": "https://github.com/Muchenski/muchenski.github.io",
"owner": {
"username": "HenriqueMuchenski",
"email": "hjmuchenski@gmail.com"
"username": "Muchenski",
"email": "muchenski.dev@gmail.com"
},
"record": {
"CNAME": "henriquemuchenski.github.io"
"CNAME": "muchenski.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Nalin-2005",
"email": "nalinstudios@gmail.com",
"instagram": "nalin_2005"
},
"record": {
"CNAME": "nalin-2005.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Narender's Personal Website and Blog",
"repo": "https://github.com/nkkize/nkkize.github.io",
"owner": {
"username": "nkkize",
"email": "nkk.snat@gmail.com"
},
"record": {
"CNAME": "nkkize.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A noxsin's webpage",
"repo": "https://github.com/komysh/komysh.github.io",
"owner": {
"username": "komysh",
"email": "arcteac@gmail.com",
"telegram": "@mentolbot"
},
"record": {
"CNAME": "komysh.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "okyanusoz",
"email": "",
"github": "okyanusoz"
},
"record": {
"URL": "https://github.com/okyanusoz"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "An awesome new place for my Portfolio !",
"repo": "https://github.com/parthpanchal123/profile",
"owner": {
"username": "parthpanchal123",
"email": "parthpanchal53@gmail.com"
},
"record": {
"CNAME": "parthpanchal123.github.io"
}
}
+1 -1
View File
@@ -5,6 +5,6 @@
"email": "bhangalepiyush@gmail.com"
},
"record": {
"URL": "https://piyush.codes"
"URL": "https://officialpiyush.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "MoartMedia",
"email": "u.hello@kakao.com"
},
"record": {
"CNAME": "dev.is.moart.media"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Pranav's personal website",
"repo": "https://github.com/pranavnt/pt5.dev",
"owner": {
"username": "pranavnt",
"email": "pranavnt@outlook.com"
},
"record": {
"CNAME": "pt5.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Edu Manager",
"repo": "https://github.com/prasadbobby",
"owner": {
"username": "prasadbobby",
"email": "prasadbobby057@gmail.com"
},
"record": {
"URL": "http://prasadbobby.me"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "quickdaffy's website",
"repo": "https://github.com/quickdaffy/quickdaffy.github.io",
"owner": {
"username": "quickdaffy",
"email": "quickdaffy@gmail.com",
"twitter": "quickdaffy"
},
"record": {
"CNAME": "quickdaffy.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal website of Rameez",
"repo": "https://github.com/rameezrami/rameezrami.github.io",
"owner": {
"username": "rameezrami",
"email": "rameespu@gmail.com"
},
"record": {
"CNAME": "rameezrami.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "RayhanADev's Website!",
"repo": "https://github.com/rayhanadev/site",
"owner": {
"username": "rayhanadev",
"email": "rayhan.arayilakath@wa-students.org"
},
"record": {
"CNAME": "b0ab519e-38d4-41f0-a0ca-912ac3b6dfac.repl.co"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "RiceCX",
"email": "andyl5463@gmail.com"
},
"description": "Hosting dev.",
"record": {
"CNAME": "doujinfucks.tk"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Riley Chou's Personal Website",
"repo": "https://github.com/rileychou/rileychou.github.io",
"owner": {
"username": "rileychou",
"email": "riley33chou@gmail.com",
"twitter": "IceShark_91"
},
"record": {
"CNAME": "rileychou.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Robert's portfolio",
"repo": "https://github.com/treboryx",
"owner": {
"username": "treboryx",
"email": "treboryx@gmail.com"
},
"record": {
"CNAME": "roberto.gr"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "Roig's website",
"repo": "https://github.com/groig",
"owner": {
"username": "groig",
"email": "groig@protonmail.com"
},
"record": {
"A": [
"152.206.177.19"
]
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "URL forwarder",
"repo": "https://github.com/roydondsouza",
"owner": {
"username": "roydondsouza",
"email": "",
"twitter": "roydondsouza"
},
"record": {
"CNAME": "roydondsouza.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "URL forwarder",
"repo": "https://github.com/roydondsouza",
"owner": {
"username": "roydondsouza",
"email": "",
"twitter": "roydondsouza"
},
"record": {
"URL": "https://www.roydondsouza.com"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "rvsp",
"email": "pvenkat.rv@gmail.com"
},
"record": {
"CNAME": "rvsp.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Sabil Shrestha's Site",
"owner": {
"username": "sabilshrestha",
"email": "kongbill6363@gmail.com",
"twitter": "kongbill62"
},
"record": {
"CNAME": "sabil62.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Safin's is-a-dev domain!",
"repo": "https://github.com/safinsingh",
"owner": {
"username": "safinsingh",
"email": "safin.singh@gmail.com"
},
"record": {
"URL": "https://safin.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Sam Poder's personal website.",
"repo": "https://github.com/sampoder/w2",
"owner": {
"username": "sampoder",
"email": "sam@sampoder.com"
},
"record": {
"URL": "https://sampoder.com"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "link for github pages",
"repo": "https://github.com/TorchedSammy/torchedsammy.github.io",
"owner": {
"username": "TorchedSammy",
"email": "torchedsammy@gmail.com",
"twitter": "TorchedSammy"
},
"record": {
"CNAME": "torchedsammy.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Documentation pages for Samuel apps.",
"repo": "https://github.com/SISBEST/sisbest.github.io",
"owner": {
"username": "SISBEST",
"email": "samuel@samuelsharp.com"
},
"record": {
"CNAME": "sisbest.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Scientific Guy's Personal Website",
"owner": {
"username": "scientific-guy",
"email": "scientificguy007@gmail.com"
},
"record": {
"CNAME": "ea51eeba-d079-40fb-adb9-fba6b71858a8.repl.co"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "A personal portfolio site for all my projects.",
"owner": {
"username": "scythe",
"email": "scythetheedev@outlook.com"
},
"record": {
"CNAME": "e0e8c1e9-55a5-4394-afd9-10de3434aee8.repl.co"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Aleksandr Polyakov's personal site",
"owner": {
"username": "sfsef",
"email": "sfsef.official@yandex.ru"
},
"record": {
"URL": "https://sfsef.me"
}
}

Some files were not shown because too many files have changed in this diff Show More