forked from denosaurs/mod.land
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcnames.ts
97 lines (95 loc) · 2.28 KB
/
cnames.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { CNAMEs } from "./mod/mod.ts";
// ** Active subdomains **
//
// WHAT?:
// This file contains all the subdomains for the mod.land project,
// if you want to request a mod.land subdomain you should modify
// this file and submit a pull request. ;)
//
// FORMAT:
// This Typescript module exports a CNAMEs object that is synced
// with mod.land. CNAMEs contains a alphabetically sorted map of
// all the mod.land subdomain with their relative target and
// configuration.
//
// eg: adding a foo.mod.land domain that points to the project
// https://foo.github.io/bar.
//
// "foo": {
// target: "foo.github.io/bar",
// proxied: true, // not required
// }
//
// OPTIONS:
// * target: target of the CNAME record, required
// * proxied: whether to use Cloudflare proxy, true by default
//
// RULES:
// Before making a request you should:
// * this file passes `deno fmt` && `deno lint`
// * entries are sorted alphabetically
// * follow the request steps (https://mod.land)
// * read our code of conduct (https://mod.land/coc)
// * read our submission rules (https://mod.land/issues)
// * read our terms of service (https://mod.land/tos)
//
// enjoy your mod.land URL <3
// ~ @denosaurs
export default <CNAMEs> {
"@": {
target: "denosaurs.github.io/mod.land",
},
"autopilot": {
target: "littledivy.github.io/autopilot-deno",
},
"crewdevio": {
target: "crewdevio.vercel.app",
},
"denodoc": {
target: "denodoc.deno.dev",
proxied: false,
},
"denopack": {
target: "denofn.github.io/denopack",
},
"dext": {
target: "dext.fly.dev",
},
"discordbot": {
target: "skillz4killz.github.io/gamer-landing",
},
"discorddn": {
target: "discorddn.github.io/docs",
},
"discordeno": {
target: "discordeno.github.io/guide",
},
"dyno": {
target: "dynoland.netlify.app",
},
"gamer": {
target: "skillz4killz.github.io/gamer-deno",
},
"ghaerdi": {
target: "ghaerdi.netlify.app",
},
"harmony": {
target: "harmonyland.github.io",
},
"harmony-korean": {
target: "akiacode.github.io/harmony.korean",
},
"keyv": {
target: "tejasag.github.io/deno-keyv",
},
"natico": {
target: "naticoo.github.io",
},
"slashdeno": {
target: "hosting.gitbook.io",
proxied: false,
},
"x": {
target: "xdev.deno.dev",
},
};