-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathconfig.ts
More file actions
41 lines (38 loc) · 1.09 KB
/
config.ts
File metadata and controls
41 lines (38 loc) · 1.09 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
export type CompanyConfig = {
url: string;
email: string;
linkedIn: string;
github: string;
discord: string;
};
export type EngineConfig = {
github: string;
newIssue: string;
releases: string;
conduct: string;
contributing: string;
examples: string;
dockerhub: string;
};
export type AppConfig = {
company: CompanyConfig;
engine: EngineConfig;
};
export const urlConfig: 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",
},
};