Home

Awesome

<p align="center"> <a href="https://www.bytechef.io?utm_source=github&utm_medium=organic&utm_campaign=readme"> <img src="static/bytechef_logo.png" alt="API integration and workflow automation platform" width="350"> </a> </p> <h1 align="center" style="border-bottom: none">API integration and workflow automation platform</h1> <p align="center"> <a href="https://www.bytechef.io?utm_source=github&utm_medium=organic&utm_campaign=readme">Website</a> - <a href="https://docs.bytechef.io?utm_source=github&utm_medium=organic&utm_campaign=readme">Documentation</a> - <a href="https://discord.gg/VKvNxHjpYx">Discord</a> - <a href="https://twitter.com/bytechefhq">Twitter</a> </p> <p align="center"> <a href="https://github.com/bytechefhq/bytechef/actions/workflows/build_push.yml"><img src="https://github.com/bytechefhq/bytechef/actions/workflows/build_push.yml/badge.svg"></a> <a href="https://github.com/bytechefhq/bytechef/blob/master/LICENSE"><img src="https://img.shields.io/static/v1?label=license&message=Apache%20v2.0&color=brightgreen"></a> </p>

UPDATE: ByteChef is under active development. We are in the alpha stage, and some features might be missing or disabled.

<img src="static/screenshot.png" alt="ByteChef Screenshot" style="max-width: 100%;">

What is ByteChef?

ByteChef is an open-source, low-code, extendable API integration and workflow automation platform. ByteChef can help you as:

Key Features

Getting Started

There are couple ways to give ByteChef a quick spin on your local machine. You can use this to test, learn or contribute.

Docker

Method 1 - Start Containers With Docker Compose

Requirement: Docker Desktop - Docker compose allows you to configure and run several dependent docker containers. Some OS environments may not support it. In that case follow Method 2 described later.

This is the fastest possible way to start Bytechef. There is docker-compose.yml in the repository root. Either checkout repository locally to your machine or download file. Make sure you execute this command taking care of correct path to docker-compose.yml file:

docker compose -f docker-compose.yml up

Both postgres database and bytechef docker container would start.

Method 2 - Start Containers With Classic Docker

This option demands pinch of focus as it allows user to profile containers. Run the following commands from your terminal to have ByteChef up and running right away.

Create Docker Network
docker network create -d bridge bytechef_network
Start Postgres Docker Container
docker run --name postgres -d -p 5432:5432 \
    --env POSTGRES_USER=postgres \
    --env POSTGRES_PASSWORD=postgres \
    --hostname postgres \
    --network bytechef_network \
    -v /opt/postgre/data:/var/lib/postgresql/data \
    postgres:15-alpine

NOTE: -v mount option is not mandatory. It mounts local DB storage to make easier access to DB infrastructure files.

Start ByteChef Docker Container
docker run --name bytechef -it -p 8080:8080 \
    --env SERVER_PORT=8080 \
    --env SPRING_PROFILES_ACTIVE=prod \
    --env BYTECHEF_DATASOURCE_URL=jdbc:postgresql://postgres:5432/bytechef \
    --env BYTECHEF_DATASOURCE_USERNAME=postgres \
    --env BYTECHEF_DATASOURCE_PASSWORD=postgres \
    --env BYTECHEF_SECURITY_REMEMBER_ME_KEY=e48612ba1fd46fa7089fe9f5085d8d164b53ffb2 \
    --network bytechef_network \
    bytechef/bytechef:latest

NOTE: -it (interactive) flag may be replaced with -d (detached). Keep it interactive if you want to track logs which can be handy for troubleshooting. Use -p 8080:8080 to customize port.

Access Bytechef

Use browser and open http://localhost:8080/login (please take care about port - if port setting is modified in docker compose file or docker run command, this URL should be updated). Chose Create Account link to setup user and than use same user and password to sign in.

Documentation

Documentation is available at docs.bytechef.io. It covers all the necessary information to get started with ByteChef, including installation, configuration, and usage.

Community support

For help, you can use one of these channels to ask a question:

Roadmap

Check out our roadmap to get informed of the latest features released and the upcoming ones.

Contributing

If you'd like to contribute, kindly read our Contributing Guide to learn and understand about our development process, how to propose bug fixes and improvements, and how to build and test your changes to ByteChef.

License

ByteChef is released under Apache License v2.0. See LICENSE for more information.

Contributors

<!-- automd:contributors github="bytechefhq/bytechef" -->

Made by community 💛 <br><br> <a href="https://github.com/bytechefhq/bytechef/graphs/contributors"> <img src="https://contrib.rocks/image?repo=bytechefhq/bytechef" /> </a>

<!-- /automd -->

Note

This project has started as a fork of Piper, an open-source, distributed workflow engine.

anl-readme-md