Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgerlag committed Jul 14, 2019
1 parent 7cbf3bc commit 7177f7b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Daniel Gerlag

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 12 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Conductor
# Conductor

Conductor is a workflow server built upon [Workflow Core](https://github.com/danielgerlag/workflow-core) that enables you to coordinate multiple services and scripts into workflows so that you can rapidly create complex workflow applications. Workflows are made up of a series of steps, with an internal data object shared between them to pass information around. Conductor automatically runs and tracks each step, and retries when there are errors.

Expand Down Expand Up @@ -44,7 +44,7 @@ services:
image: mongo
```

### Defining a workflow
### Quick example

We'll start by defining a simple workflow that will log "Hello world" as it's first step and then "Goodbye!!!" as it's second and final step. We `POST` the definition to `api/definition` in either `YAML` or `JSON`.

Expand Down Expand Up @@ -96,10 +96,20 @@ Content-Type: application/x-yaml
CustomMessage: foobar
```
## Status
This project is currently in aphla status. I'm seeking passionate and talented to help get it to v1. Please [contact me](mailto:[email protected]) if you are interested in getting involved.
## Further reading
* [Introduction](docs/01-intro.md)
* [Workflow Primitives](docs/02-primitives.md)
* [Http requests](docs/03-http.md)
* [Lambdas](docs/04-lambda.md)
* [API Reference](docs/99-api-reference.md)
* [Roadmap](docs/roadmap.md)
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details

0 comments on commit 7177f7b

Please sign in to comment.