DevZero Logo
DevZero

Automatisch

Automatisch starter template for DevZero.

OPEN IN DEVZERO

What is Automatisch?

Automatisch is an open-source automation platform designed to connect applications and streamline workflows without requiring code. It allows users to automate repetitive tasks by creating workflows that integrate with popular services and tools. Licensed under the MIT license, Automatisch provides an accessible and efficient way to handle automation needs in development and operational processes.

Features

  • No-Code Automation: Build workflows without programming knowledge.
  • Integration with Popular Apps: Connect with services like Slack, Gmail, and more.
  • Custom Workflows: Create tailored automation pipelines to fit specific requirements.

Benefits

Automatisch simplifies task automation, helping users reduce manual efforts and save time. With its no-code approach, it is accessible to developers and non-developers alike. The ability to connect with widely-used applications and the flexibility of customization make Automatisch a practical tool for automating everyday workflows.

Automatisch with DevZero

Automatisch complements DevZero by automating workflows in dynamic development environments. By connecting various applications and managing repetitive tasks, it enables developers to focus on core activities. This pairing fosters a productive environment and supports the creation of more efficient applications.

Advantages

  • Integration with DevZero: Works smoothly within development environments.
  • Custom Workflow Automation: Automates processes across multiple tools and services.
  • Time-Saving: Reduces manual interventions, allowing teams to concentrate on key objectives.

Recipe for Automatisch

Automatisch

version: "3"
build:
  steps:
    - type: apt-get
      packages: ["build-essential", "curl", "git", "nano", "software-properties-common", "ssh", "sudo", "tar", "unzip", "vim", "wget", "zip", "docker-ce", "docker-ce-cli", "containerd.io"]
      extra_repositories:
        - key_url: https://download.docker.com/linux/ubuntu/gpg
          repository: https://download.docker.com/linux/ubuntu
    - type: command
      name: "Enable Docker Daemon"
      command: |
        usermod -aG docker devzero
        systemctl enable docker.service
        systemctl enable containerd.service
      directory: /home/devzero
      user: root

launch:
  steps:
    - type: command
      command: |-
          systemctl stop docker
          echo -e "{"data-root": "/home/devzero/docker"}" > /etc/docker/daemon.json
          systemctl start docker
      user: root
    - type: command
      command: |-
        git clone https://github.com/automatisch/automatisch.git
        cd automatisch
        docker compose up -d

On this page