Free *.is-pinoy.dev subdomains for Filipino developers.
Point your portfolio at a subdomain that represents where you're from.
Note: We are currently only accepting portfolio websites for the meantime. Side projects and other use cases will be open in the future.
- Fork this repository
- Find your DNS values β see the provider guides
- Create a file at
subdomains/<your-subdomain>.json - Validate your file before opening a PR:
npx @is-pinoy-dev/validate ./subdomains/<your-subdomain>.json
- Open a pull request β your subdomain is live once it's merged and synced π
For the full step-by-step walkthrough including the PR template, see CONTRIBUTING.md.
Not sure where to find your CNAME or TXT values? See the provider guides below.
π¬ Want a faster review? Post your PR link in our Discord and a maintainer will pick it up sooner.
{
"subdomain": "yourname",
"owner": {
"github": "your-github-username",
"email": "you@example.com"
},
"records": {
"CNAME": {
"value": "yoursite.vercel.app."
}
}
}The email field is optional. The filename must match the subdomain field exactly (e.g. yourname.json).
| Type | Use case | Example value |
|---|---|---|
CNAME |
Hosted platforms (Vercel, GitHub Pages, Cloudflare Pages) | yoursite.vercel.app. |
A |
Custom server / VPS | 203.0.113.1 |
TXT |
Domain verification (Google, email providers) | google-site-verification=... |
You can combine record types. For example, use CNAME for your site and TXT for verification.
{
"subdomain": "yourname",
"owner": { "github": "your-github-username" },
"records": {
"CNAME": { "value": "yoursite.vercel.app." }
}
}{
"subdomain": "yourname",
"owner": { "github": "your-github-username" },
"records": {
"A": { "value": "203.0.113.1" }
}
}{
"subdomain": "yourname",
"owner": { "github": "your-github-username" },
"records": {
"CNAME": { "value": "yoursite.vercel.app." },
"TXT": { "value": "google-site-verification=abc123", "provider": "vercel" }
}
}- Subdomain must be lowercase alphanumeric and hyphens only (
a-z,0-9,-) - Length: 1β63 characters
- One subdomain per person
- Must be a portfolio website (side projects and other use cases are not accepted for now)
- Must point to something real β no squatting
owner.githubmust match your GitHub username
Step-by-step instructions for finding your DNS values on popular hosting platforms:
See CONTRIBUTING.md for the full guide.
Please also read our Code of Conduct before getting started.
Made with π€ by Filipino developers, for Filipino developers.