Skip to main content
Toutes les apps
Recettes d'automatisation
App métier

Recettes d'automatisation

Quatre petites automatisations couvrent les familles de déclencheurs (webhook vers enregistrement, enregistrement vers email et journal, un digest cron et une alerte d'échec globale), avec un historique illimité dans ta propre base.

Connexion démo
Email
demo@sovrium.com
Mot de passe
Sovrium-Demo-d8462d!

Réinitialisée chaque nuit. Tes changements sont effacés, alors explore librement.

Cette app fait partie des démos Sovrium hébergées.

La configuration

C'est toute l'app. Copie-la, modifie-la, fais-la tienne.

app.yaml
# The Zapier-replacement showcase. Four small recipes cover the trigger
# families — webhook, record, cron, and automation-failure — chained through
# two tables. Every run is stored in YOUR database with infinite history
# (Zapier caps history by plan), no per-task pricing, and full data control.
name: automation-recipes
version: 1.0.0
description: >-
  Automation recipes — a webhook captures leads, a record trigger notifies and
  logs, a cron sends the daily digest, and a failure trigger alerts the
  operator. Infinite run history in your own database.

auth:
  $ref: ./config/auth.yaml

theme:
  $ref: ./config/theme.yaml

tables:
  - $ref: ./config/tables/leads.yaml
  - $ref: ./config/tables/activity_log.yaml

pages:
  - $ref: ./config/pages/home.yaml
  - $ref: ./config/pages/sign-in.yaml
  - $ref: ./config/pages/activity.yaml

automations:
  - $ref: ./config/automations/capture-lead-from-webhook.yaml
  - $ref: ./config/automations/log-new-lead.yaml
  - $ref: ./config/automations/daily-digest.yaml
  - $ref: ./config/automations/alert-on-failure.yaml

Lance-la

Installe Sovrium, puis démarre l'app depuis sa config.

>_ terminal
curl -fsSL https://sovrium.com/install | sh
sovrium init my-recipes --template automation-recipes

Construis la tienne

Pars d'un modèle ou d'un fichier vide. Une config, et Sovrium fait tourner toute l'app.

Construit avec Sovrium