Skip to content

Commit 14fe58d

Browse files
committed
Revise sidebar ordering and cleanup files that were duplicated
1 parent 5f76b2f commit 14fe58d

File tree

25 files changed

+27
-6
lines changed

25 files changed

+27
-6
lines changed

develop-docs/application/config.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Configuration
3+
sidebar_order: 60
34
---
45

56
This document describes configuration available to the Sentry server itself.

develop-docs/backend/ab-testing/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: A/B Tests with Amplitude
3+
sidebar_order: 190
34
---
45

56
## Why AB testing?

develop-docs/backend/api/design.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Designing a New API
33
sidebar_order: 2
44
---
5+
56
[Django REST framework](https://www.django-rest-framework.org/)(DRF) is a powerful and flexible toolkit
67
for building Web APIs. Sentry APIs are built using DRF. Here are some considerations to make when designing APIs at Sentry.
78

develop-docs/backend/api/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: API Development
3+
sidebar_order: 1
34
---
45

56
As a developer-facing company it's critical for us to have simple, intuitive, and consistent APIs that our users can call from their dev environment to accomplish key tasks without going to the UI. If you're creating or editing an endpoint, this doc will help you achieve Sentry standards.

develop-docs/backend/serializers.mdx renamed to develop-docs/backend/api/serializers.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Serializers
3+
sidebar_order: 10
34
---
45

56
Serializers are used to take complex python models and translate them into json. Serializers can also be used to deserialize json back to the python models after validating the incoming data.

develop-docs/services/buffers.mdx renamed to develop-docs/backend/buffers.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Write Buffers
3+
sidebar_order: 170
34
---
45

56
Sentry manages database row contention by buffering writes and flushing bulk changes to the database over a period of time. This is extremely helpful if you have high concurrency, especially if they’re frequently the same event.

develop-docs/backend/development-server.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Backend Development Server
3+
sidebar_order: 10
34
---
45

56
(*see also: [Frontend Development Server](/frontend/development-server/)*)

develop-docs/services/digests.mdx renamed to develop-docs/backend/digests.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Notification Digests
3+
sidebar_order: 140
34
---
45

56
Sentry provides a service that will collect notifications as they occur and schedule them for delivery as aggregated “digest” notifications.

develop-docs/services/email.mdx renamed to develop-docs/backend/email.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Email
3+
sidebar_order: 110
34
---
45

56
Sentry provides support for both outbound, and incoming email.

develop-docs/backend/feature-flags/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: 'Feature Flags'
3+
sidebar_order: 40
34
---
45

56
Feature flags are declared in Sentry's codebase (look for `SENTRY_FEATURES` in

0 commit comments

Comments
 (0)