Better automation platform made
for developers
Build and test your pipelines with the power of JavaScript, Go or Python.
Write your own or use what is already built by others.
import { cron } from 'runbed/triggers';
import { ssh } from 'runbed/actions';
import { SSH_HOST, SSH_USER, SSH_KEY } from '$env';
export default pipeline(
cron('0 0 * * 0'),
).steps(
job(async () => {
const conn = await ssh.connect(
SSH_HOST,
SSH_USER,
SSH_KEY,
);
await conn.exec(`
echo Weekly hello from runbed! $(date) >> hi.txt
`);
return { message: 'I did it!' };
}),
job(async ({ message }) => {
// Write your next awesome function here!
}),
);
Want to be the first to try out?
Sign up for early BETA access!
Automate faster
Everything you need to make your workflows faster
We give you all of the features necessary to build flexible automation pipelines with a focus on ease-of-use for developers.
- Automation As Code
Build and test pipelines with JavaScript, Go or Python that you already know and love.
- Performance
Forget slow pipelines! Each pipeline job runs as a separate lightweight cloud function with immediate startup, fast execution and quick recovery when failed.
- Plugins
Create custom plugins to add additional features if needed or find something already made by others.
- Module Registry
Package your automation scripts and share with others or take already built and run it for yourself.
- Monitoring
Detailed information and statistics about health and status of all your pipelines. Get notified when tasks fail.
- Deploy
Simply integrate with your Git repository to build, test, publish every change you make.
Interested in our vision?
Contact us NOW!
We are currently at the early stage and we are looking for feedback and partners.