GithubHelp home page GithubHelp logo

bpm's Introduction

BPM

Automation system. You write pipeline in pure go code. You can hook phase listeners that you write in go

pipeline:
  file: "hello-world.go"
  func: "examples.HelloWorld"
  description: |
    hello world example for bpm
  project: "Hello World Project"
  environments: [ "demo" ]
  configurations:
    to-say: |
      Text from the config file
package examples

import (
    . "bpm"
    "bpm/agents"
    . "bpm/config"
)

func HelloWorld(config PipelineConfiguration) Pipeline {
    return Pipeline{
        Name: "Hello World pipeline",
        Phases: Phases{
            NewPhase("Print Hello World",
                Phase{
                    Description: "Prints 'Hello World' using bash",
                    Agent:       agents.Bash,
                    Trigger:     OnDeploy{Trigger: true},
                    Steps: Steps{
                        Step{
                            Name: "Hello World Step",
                            Commands: Commands{
                                Command{"echo", "{{to-say}}"},
                            },
                        },
                        Step{
                            Name: "Done",
                            Commands: Commands{
                                Command{"echo", "Done!"},
                                Command{"echo", "Exiting!"},
                            },
                        }},
                }),
        }}
}

Pipeline syntax

Pipeline

package bpm
type Pipeline struct {
	Phases Phases
	Config Config
}

Config

package bpm
type Config map[string]string

Configs are the value that will be replaced in strings with 'mustache', ie Input: "/result-{{env}}", {{env}} wil be replaced by the value in the map associated with the key env.

Phases

package bpm
type Phase struct {
	Name          string
	Description   Description
	Id            uuid.UUID
	Agent         Agent
	Steps         Steps
	Input, Output string
	Trigger       Trigger
}

Name

The name of the phase, for human to read

Description

package bpm
type Description string

A description for the phase, for documentation purpose

Id

A unique uuid used to cross-reference Phases

Agent

package bpm
type Agent string

An agent is a type of environment in which the phase is being executed in.

Steps

Input

Output

Trigger

bpm's People

Contributors

l-applin avatar

Watchers

 avatar Kostas Georgiou avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.