flowbaker
Execution engine powering Flowbaker, a no code platform to build, connect, and automate workflows.
File Explorer
Download Latest Version (.zip)- build.yml
- head.png
- logo.svg
- reset.go
- root.go
- start.go
- status.go
- workspaces.go
- main.go
- api_signature.go
- executor_controller.go
- crypto.go
- executor_container.go
- integrations.go
- manager.go
- registration.go
- executor_credential_decryption_service.go
- executor_credential_manager.go
- executor_event_publisher.go
- executor_integration_manager.go
- executor_knowledge_manager.go
- executor_model_manager.go
- executor_route_manager.go
- executor_storage_manager.go
- executor_task_publisher.go
- executor_workspace_manager.go
- api_signature_middleware.go
- server.go
- version.go
- agent.go
- options.go
- mongodb.go
- memory.go
- anthropic.go
- gemini.go
- openai.go
- provider.go
- planning.go
- tool.go
- user_input.go
- errors.go
- message.go
- plan.go
- response.go
- stream_event.go
- tool.go
- usage.go
- client.go
- errors.go
- event_stream.go
- executor_auth.go
- file_reader.go
- file_writer.go
- options.go
- types.go
- workflows.go
- client.go
- config.go
- errors.go
- types.go
- dataschema.go
- dataschema_test.go
- execution_handlers.go
- execution_observer.go
- item_converter.go
- task.go
- workflow_executor.go
- workflow_executor_service.go
- execution.go
- action_manager.go
- config_manager.go
- credential.go
- event.go
- execution.go
- execution_context.go
- execution_observer.go
- executor_credential_decryption_service.go
- executor_credential_manager.go
- executor_integration_manager.go
- executor_knowledge_manager.go
- executor_model_manager.go
- executor_storage_manager.go
- executor_task_publisher.go
- executor_workspace_manager.go
- integration.go
- integration_selector.go
- item.go
- knowledge.go
- node.go
- oauth.go
- payload.go
- peekable.go
- polling.go
- property_path.go
- property_path_test.go
- route.go
- storage.go
- task.go
- workflow.go
- workspace_registration_manager.go
- array_operations.go
- executor.go
- parser.go
- registry.go
- types.go
- evaluator.go
- kangaroo_binder.go
- mongodb.go
- postgresql.go
- redis.go
- agent.go
- merger.go
- merger_test.go
- schema.go
- base64_integration.go
- schema.go
- brightdata_integration.go
- schema.go
- schema.go
- claude_integration.go
- schema.go
- schema.go
- condition_integration.go
- schema.go
- content_classifier_integration.go
- schema.go
- cron_integration.go
- schema.go
- discord_connection_tester.go
- discord_integration.go
- discord_polling_handler.go
- schema.go
- dropbox_integration.go
- http_client_provider.go
- schema.go
- memory_integration.go
- schema.go
- schema.go
- github_connection_tester.go
- github_integration.go
- schema.go
- gitlab_connection_tester.go
- gitlab_integration.go
- schema.go
- gmail_integration.go
- gmail_polling_handler.go
- http_client_provider.go
- schema.go
- google_drive_connection_tester.go
- google_drive_integration.go
- schema.go
- google_sheets_integration.go
- schema.go
- schema.go
- youtube_integration.go
- schema.go
- http_generic_client_provider.go
- http_integration.go
- schema.go
- schema.go
- items_to_item_integration.go
- schema.go
- jira_connection_tester.go
- jira_integration.go
- schema.go
- types.go
- jwt_integration.go
- schema.go
- knowledge_integration.go
- schema.go
- linear_connection_tester.go
- linear_integration.go
- schema.go
- schema.go
- manipulation_integration.go
- schema.go
- mongodb_integration.go
- schema.go
- notion_connection_tester.go
- notion_integration.go
- schema.go
- schema.go
- openai_integration.go
- schema.go
- pipedrive_integration.go
- schema.go
- postgresql_integration.go
- schema.go
- csv_parser.go
- json_parser.go
- ndjson_parser.go
- parser.go
- registry.go
- tsv_parser.go
- xlsx_parser.go
- xml_parser.go
- yaml_parser.go
- rawfiletoitem_integration.go
- schema.go
- redis_connection_tester.go
- redis_integration.go
- schema.go
- resend_integration.go
- schema.go
- s3_integration.go
- schema.go
- schema.go
- send_response_integration.go
- schema.go
- slack_integration.go
- schema.go
- sleep_integration.go
- schema.go
- snowflake_connection_tester.go
- snowflake_integration.go
- schema.go
- split_array_integration.go
- schema.go
- startups_watch_integration.go
- startups_watch_polling_handler.go
- schema.go
- storage_integration.go
- schema.go
- stripe_connection_tester.go
- stripe_integration.go
- schema.go
- teams_connection_tester.go
- teams_integration.go
- schema.go
- telegram_integration.go
- schema.go
- fieldpath.go
- schema.go
- transform.go
- schema.go
- .gitignore
- Dockerfile
- go.mod
- go.sum
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/flowbaker/flowbaker
Downloads the entire project code from GitHub to your computer.
cd flowbaker
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t flowbaker .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 flowbaker
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Go
MediumPrerequisites
go build -o flowbaker cmd/main.go
Compiles the Go program into an executable.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
