-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
91 lines (87 loc) · 1.78 KB
/
config.ts
File metadata and controls
91 lines (87 loc) · 1.78 KB
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
interface AppConfig {
developmentUrl: string;
appUrl: string;
email: string;
gravatarOptions: {
size: number;
}
}
interface ShortnerConfig {
shorturls: {
redirect: string;
target: string;
}[];
}
const appConfig: AppConfig = {
developmentUrl: "http://localhost:3000",
appUrl: "https://pascalrr.gay",
email: "me@floridaman7588.me",
gravatarOptions: {
size: 512
}
}
const shortnerConfig: ShortnerConfig = {
shorturls: [
{
redirect: "links",
target: "https://www.pascalrr.gay/links"
},
{
redirect: "website",
target: "https://www.pascalrr.gay"
},
{
redirect: "github",
target: "https://github.com/pascalrrr"
},
{
redirect: "linkedin",
target: "https://www.linkedin.com/in/cayden-haun"
},
{
redirect: "mastodon",
target: "https://blahaj.zone/@floridaman"
},
{
redirect: "youtube",
target: "https://youtube.com/@FloridaMan7588"
},
{
redirect: "discord",
target: "https://discord.gg/cTAvaYxWF6"
},
{
redirect: "kofi",
target: "https://ko-fi.com/floridaman7588"
},
{
redirect: "coffee",
target: "https://buymeacoffee.com/floridaman7588"
},
{
redirect: "waterfox-github",
target: "https://github.com/flathub/net.waterfox.waterfox"
},
{
redirect: "conductor-github",
target: "https://github.com/SMNWTeam1982/Conductor"
},
{
redirect: "mochad-github",
target: "https://github.com/pascalrrr/mochad-ha-addon"
},
{
redirect: "waterfox-flathub",
target: "https://flathub.org/apps/details/net.waterfox.waterfox"
},
{
redirect: "conductor-releases",
target: "https://github.com/SMNWTeam1982/Conductor/releases"
},
{
redirect: "mochad-releases",
target: "https://github.com/pascalrrr/mochad-ha-addon/releases"
}
]
}
export { appConfig, shortnerConfig };