docs/content/4.backend/0.introduction.md

1.4 KiB

title
Introduction

Introduction to the backend

The backend is essentially just an account server, there is not much more to it. The client will work fine without it, but no syncing options will be available.

Metrics

The backend exposes an endpoint for Prometheus metrics{target="_blank"} which allows you to keep track of the backend more easily, it can be accessed on /metrics. To view these metrics properly, you'll need to use an analytics program like Grafana{target="_blank"}, which can visualize logs from Prometheus{target="_blank"}.

Security

Optionally, there are a few security settings:

  • Recaptcha support, the server can verify Recaptcha v3 tokens on register and login.
  • Ratelimits, some expensive endpoints have ratelimits, but only when enabled. This requires an additional redis connection.

Migrations

Migrations help keep your database schema in sync with everyone else. To run migrations, you can use the pnpm migration:up command inside the docker container or in your command-line if you're not using docker.

Alternatively, you can enable the postgres.migrateOnBoot variable and it will be automatically migrated on boot.