1# Developing Zed's Backend
2
3Zed's backend consists of the following components:
4
5- The Zed.dev web site
6 - implemented in the [`zed.dev`](https://github.com/zed-industries/zed.dev) repository
7 - hosted on [Vercel](https://vercel.com/zed-industries/zed-dev).
8- The Zed Collaboration server
9 - implemented in the [`crates/collab`](https://github.com/zed-industries/zed/tree/main/crates/collab) directory of the main `zed` repository
10 - hosted on [DigitalOcean](https://cloud.digitalocean.com/projects/6c680a82-9d3b-4f1a-91e5-63a6ca4a8611), using Kubernetes
11- The Zed Postgres database
12 - defined via migrations in the [`crates/collab/migrations`](https://github.com/zed-industries/zed/tree/main/crates/collab/migrations) directory
13 - hosted on DigitalOcean
14
15---
16
17## Local Development
18
19Here's some things you need to develop backend code locally.
20
21### Dependencies
22
23- **Postgres** - download [Postgres.app](https://postgresapp.com).
24
25### Setup
26
271. Check out the `zed` and `zed.dev` repositories into a common parent directory
282. Set the `GITHUB_TOKEN` environment variable to one of your GitHub personal access tokens (PATs).
29
30 - You can create a PAT [here](https://github.com/settings/tokens).
31 - You may want to add something like this to your `~/.zshrc`:
32
33 ```
34 export GITHUB_TOKEN=<the personal access token>
35 ```
36
373. In the `zed.dev` directory, run `npm install` to install dependencies.
384. In the `zed directory`, run `script/bootstrap` to set up the database
395. In the `zed directory`, run `foreman start` to start both servers
40
41---
42
43## Production Debugging
44
45### Datadog
46
47Zed uses Datadog to collect metrics and logs from backend services. The Zed organization lives within Datadog's _US5_ [site](https://docs.datadoghq.com/getting_started/site/), so it can be accessed at [us5.datadoghq.com](https://us5.datadoghq.com). Useful things to look at in Datadog:
48
49- The [Logs](https://us5.datadoghq.com/logs) page shows logs from Zed.dev and the Collab server, and the internals of Zed's Kubernetes cluster.
50- The [collab metrics dashboard](https://us5.datadoghq.com/dashboard/y2d-gxz-h4h/collab?from_ts=1660517946462&to_ts=1660604346462&live=true) shows metrics about the running collab server