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.

The Pre‑build Workflow allows you to define checks and automation that run before your service is built and deployed to a specific environment.

Configuration

In your revolte.yaml, you can enable or disable pre‑build features per environment:
revolte.yaml
revolte:
  version: "1.0"
  project: Sideline HQ
  appName: sideline-web-admin

  env:
    production:
      branch: main
      codeReview: true
      codeQuality: true
      testSuite: true
      automationTestSuite: true

Key Modules

  • Code Review: Activates AI‑driven PR summarization and fix suggestions.
  • Code Quality: Enforces linting and style rules.
  • Test Suite: Executes your unit and integration tests.
  • Automation Test Suite: Runs end‑to‑end automation tests.

Next Steps