├── .gitattributes ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── deploy.yml │ ├── test.yml │ └── validate.yml ├── .gitignore ├── README.md ├── aisafety.dance.yaml ├── bank.engineering.yaml ├── bin ├── dry-run └── sync ├── bulckcah.com.yaml ├── config └── production.yaml ├── cpu.land.yaml ├── dino.icu.yaml ├── dinosaurbbq.org.yaml ├── hack.af.yaml ├── hack.club.yaml ├── hackclub.app.yaml ├── hackclub.com.yaml ├── hackclub.community.yaml ├── hackclub.dev.md ├── hackclub.io.yaml ├── hackclub.org.yaml ├── hackedu.us.yaml ├── hackfoundation.org.yaml ├── nonprofit.new.yaml ├── scrap.dev.yaml ├── scrapbook.dev.yaml └── wackclub.com.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/README.md -------------------------------------------------------------------------------- /aisafety.dance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/aisafety.dance.yaml -------------------------------------------------------------------------------- /bank.engineering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/bank.engineering.yaml -------------------------------------------------------------------------------- /bin/dry-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/bin/dry-run -------------------------------------------------------------------------------- /bin/sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/bin/sync -------------------------------------------------------------------------------- /bulckcah.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/bulckcah.com.yaml -------------------------------------------------------------------------------- /config/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/config/production.yaml -------------------------------------------------------------------------------- /cpu.land.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/cpu.land.yaml -------------------------------------------------------------------------------- /dino.icu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/dino.icu.yaml -------------------------------------------------------------------------------- /dinosaurbbq.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/dinosaurbbq.org.yaml -------------------------------------------------------------------------------- /hack.af.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hack.af.yaml -------------------------------------------------------------------------------- /hack.club.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hack.club.yaml -------------------------------------------------------------------------------- /hackclub.app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.app.yaml -------------------------------------------------------------------------------- /hackclub.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.com.yaml -------------------------------------------------------------------------------- /hackclub.community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.community.yaml -------------------------------------------------------------------------------- /hackclub.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.dev.md -------------------------------------------------------------------------------- /hackclub.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.io.yaml -------------------------------------------------------------------------------- /hackclub.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackclub.org.yaml -------------------------------------------------------------------------------- /hackedu.us.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackedu.us.yaml -------------------------------------------------------------------------------- /hackfoundation.org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/hackfoundation.org.yaml -------------------------------------------------------------------------------- /nonprofit.new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/nonprofit.new.yaml -------------------------------------------------------------------------------- /scrap.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/scrap.dev.yaml -------------------------------------------------------------------------------- /scrapbook.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/scrapbook.dev.yaml -------------------------------------------------------------------------------- /wackclub.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/dns/HEAD/wackclub.com.yaml --------------------------------------------------------------------------------