Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.sunny-dev.info/llms.txt

Use this file to discover all available pages before exploring further.

Every environment contains one or more services. Revolte uses a Resource ID (RID) system to uniquely identify and manage these components across your lifecycle.

Service Types

Revolte supports several core service types out of the box:
  • WEB_SERVICE: Publicly accessible applications (e.g., APIs, Frontends).
  • DATABASE: Managed stateful services (e.g., Postgres, Redis).
  • WORKER: Background processors (Coming Soon).

RID Mapping

The rid_X key maps your configuration to the Revolte dashboard.
revolte.yaml
env:
  production:
    services:
      rid_1:
        type: WEB_SERVICE
        name: api-service
        entryPoint: index.js
        properties:
          health: /health
          port: 8080