-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
43 lines (39 loc) · 1.15 KB
/
config.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
// Make sure your changes are in sync with public/_redirects
export interface CompanyConfig {
url: string;
email: string;
linkedIn: string;
github: string;
discord: string;
}
export interface EngineConfig {
github: string;
newIssue: string;
releases: string;
conduct: string;
contributing: string;
examples: string;
dockerhub: string;
}
export interface AppConfig {
company: CompanyConfig;
engine: EngineConfig;
}
export const config: AppConfig = {
company: {
url: "https://arcade.dev/",
email: "contact@arcade.dev",
linkedIn: "https://www.linkedin.com/company/arcade-ai/",
github: "https://github.com/ArcadeAI",
discord: "https://discord.gg/GUZEMpEZ9p",
},
engine: {
github: "https://github.com/ArcadeAI/arcade-ai",
newIssue: "https://github.com/ArcadeAI/arcade-ai/issues/new",
releases: "https://github.com/ArcadeAI/arcade-ai/releases",
conduct: "https://github.com/ArcadeAI/arcade-ai/CODE_OF_CONDUCT.md",
contributing: "https://github.com/ArcadeAI/arcade-ai/CONTRIBUTING.md",
examples: "https://github.com/ArcadeAI/arcade-ai",
dockerhub: "https://hub.docker.com/r/arcade-ai/engine",
},
};