Automate Your CI/CD Pipeline

Simplify your deployment process with PiGen. Generate complete pipelines and configuration files with just one command.

Launching May 1st, 2025

00
Days
00
Hours
00
Minutes
00
Seconds

Key Features

Multi-Cloud Support

Deploy to AWS, Google Cloud, or Azure with unified configuration files.

Infrastructure as Code

Generate Terraform and Kubernetes configurations automatically.

Instant Setup

Get your pipeline running in minutes with simple YAML configuration.

Supported Tools

Terraform

Ansible

Kubernetes

Dagger

Simple Configuration

# pigen.yaml
name: web-app-pipeline
platform: aws
infrastructure:
  type: terraform
  provider: aws
  region: us-west-2

services:
  - name: frontend
    type: react
    path: ./frontend
    build:
      commands:
        - npm install
        - npm run build
    deploy:
      type: s3
      bucket: my-app-frontend

  - name: backend
    type: nodejs
    path: ./backend
    build:
      commands:
        - npm install
        - npm run build
    deploy:
      type: ecs
      container_port: 3000