Skip to content

Commit c9e8381

Browse files
committed
Updated startpage
1 parent e6dc5bf commit c9e8381

File tree

2 files changed

+47
-9
lines changed

2 files changed

+47
-9
lines changed

develop-docs/getting-started/index.mdx

Lines changed: 45 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,51 @@ description: This documentation serves as reference points for developing agains
44
sidebar_order: 1
55
---
66

7-
## Getting Started
7+
We recommend going through the [engineering practices](/engineering-practices) and our [development philsophy](/getting-started/philosophy/) before contributing a change to Sentry.
88

9-
We recommend going through the general documentation before contributing a change to Sentry.
10-
11-
- <Link to="/getting-started/philosophy/">Development Philosophy</Link> (and <Link to="/sdk/philosophy/">SDK Development Philosophy</Link>)
12-
- <Link to="/development/commit-messages/">Commit Messages</Link>
13-
- <Link to="/development/code-review/">Code Review</Link>
14-
- <Link to="/development/environment/">Environment</Link>
15-
- <Link to="/development/workflow/">Workflow</Link>
16-
- <Link to="/application/architecture/">Application Architecture</Link>
9+
<div className="flex flex-wrap gap-6">
10+
<Card
11+
className="w-full md:w-[calc(50%-12px)]"
12+
href="/api-server/"
13+
title="API Server"
14+
description="The monolith that is powering Sentry."
15+
/>
16+
<Card
17+
className="w-full md:w-[calc(50%-12px)]"
18+
href="/frontend/"
19+
title="Frontend"
20+
description="How we write frontend code."
21+
/>
22+
<Card
23+
className="w-full md:w-[calc(50%-12px)]"
24+
href="/services/"
25+
title="Services"
26+
description="Running besides the monolith."
27+
/>
28+
<Card
29+
className="w-full md:w-[calc(50%-12px)]"
30+
href="/integrations/"
31+
title="Integrations"
32+
description="Connecting Sentry to other products."
33+
/>
34+
<Card
35+
className="w-full md:w-[calc(50%-12px)]"
36+
href="/ingestion/"
37+
title="Ingestion"
38+
description="Receiving and processing data."
39+
/>
40+
<Card
41+
className="w-full md:w-[calc(50%-12px)]"
42+
href="/sdk/"
43+
title="SDKs"
44+
description="Instrumenting users code."
45+
/>
46+
<Card
47+
className="w-full"
48+
href="/self-hosted/"
49+
title="Self-Hosted Sentry"
50+
description="How you can run all of Sentry on your own server, without paying anything."
51+
/>
52+
</div>
1753

1854
You can also take a glance at the [Sentry Dockerfile](https://github.com/getsentry/sentry/blob/master/self-hosted/Dockerfile) for more information on how the Sentry server is configured, including its system dependencies.

src/mdxComponents.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {Alert, Note} from './components/alert';
22
import {Arcade} from './components/arcade';
33
import {Break} from './components/break';
4+
import {Card} from './components/card';
45
import {CliChecksumTable} from './components/cliChecksumTable';
56
import {CodeBlock} from './components/codeBlock';
67
import {CodeTabs} from './components/codeTabs';
@@ -43,6 +44,7 @@ export function mdxComponents(
4344
Alert,
4445
Arcade,
4546
Break,
47+
Card,
4648
CliChecksumTable,
4749
CommunitySupportedPlatforms,
4850
PlatformFilter,

0 commit comments

Comments
 (0)