move backend docs to their relevant folder (#32041)

This commit is contained in:
Will Browne 2021-03-17 09:41:16 +01:00 committed by GitHub
parent 93f17bd2b3
commit 8e1c2d6472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 4 deletions

View File

@ -4,9 +4,9 @@ Are you looking to take on contributions with bigger impact? These guides help y
Learn more about the backend architecture:
- Part 1: [Services](services.md)
- Part 2: [Communication](communication.md)
- Part 3: [Database](database.md)
- Part 1: [Services](backend/services.md)
- Part 2: [Communication](backend/communication.md)
- Part 3: [Database](backend/database.md)
Learn more about the frontend architecture:
- Part 1: [Data requests](frontend-data-requests.md)

View File

@ -23,7 +23,7 @@ For more information on developing for the backend:
| package | description |
| ------- | ----------- |
| /pkg/bus | The bus is described in more details under [Communication](/contribute/architecture/communication.md) |
| /pkg/bus | The bus is described in more details under [Communication](/contribute/architecture/backend/communication.md) |
| /pkg/models | This is where we keep our domain model. This package should not depend on any package outside standard library. It does contain some references within Grafana but that is something we should avoid going forward. |
| /pkg/registry | Package for managing services. |
| /pkg/services/alerting | Grafana's alerting services. The alerting engine runs in a separate goroutine and shouldn't depend on anything else within Grafana. |