forked from railwayapp/nixpacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.ts
71 lines (69 loc) · 2.46 KB
/
sidebar.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
export type ISidebarSection = {
text: string;
href?: string;
links?: ISidebarItem[];
};
export type ISidebarItem = { text: string; href: string };
export const sidebarItems: ISidebarSection[] = [
{ href: "/docs", text: "Introduction" },
{ href: "/docs/getting-started", text: "Getting Started" },
{ href: "/docs/install", text: "Installation" },
{ href: "/docs/how-it-works", text: "How it Works" },
{
text: "Guides",
links: [
{
text: "Configuring Builds",
href: "/docs/guides/configuring-builds",
},
],
},
{
text: "Configuration",
links: [
{ text: "File", href: "/docs/configuration/file" },
{
text: "Environment",
href: "/docs/configuration/environment",
},
{ text: "Procfile", href: "/docs/configuration/procfile" },
{ text: "Caching", href: "/docs/configuration/caching" },
],
},
{ text: "CLI Reference", href: "/docs/cli" },
{
text: "Language Support",
links: [
{ href: "/docs/providers/clojure", text: "Clojure" },
{ href: "/docs/providers/cobol", text: "Cobol" },
{ href: "/docs/providers/crystal", text: "Crystal" },
{ href: "/docs/providers/csharp", text: "C#/.NET" },
{ href: "/docs/providers/dart", text: "Dart" },
{ href: "/docs/providers/deno", text: "Deno" },
{ href: "/docs/providers/elixir", text: "Elixir" },
{ href: "/docs/providers/fsharp", text: "F#" },
{ href: "/docs/providers/go", text: "Go" },
{ href: "/docs/providers/haskell", text: "Haskell" },
{ href: "/docs/providers/java", text: "Java" },
{ href: "/docs/providers/lunatic", text: "Lunatic" },
{ href: "/docs/providers/node", text: "Node" },
{ href: "/docs/providers/php", text: "PHP" },
{ href: "/docs/providers/python", text: "Python" },
{ href: "/docs/providers/ruby", text: "Ruby" },
{ href: "/docs/providers/rust", text: "Rust" },
{ href: "/docs/providers/staticfile", text: "Staticfile" },
{ href: "/docs/providers/swift", text: "Swift" },
{ href: "/docs/providers/scala", text: "Scala" },
{ href: "/docs/providers/zig-lang", text: "Zig" },
],
},
{
text: "Deploying",
links: [
{ text: "Railway", href: "/docs/deploying/railway" },
{ text: "Flightcontrol", href: "/docs/deploying/flightcontrol" },
{ text: "Easypanel", href: "/docs/deploying/easypanel" },
{ text: "Coherence", href: "/docs/deploying/coherence" },
],
},
];