{"id":13566752,"url":"https://github.com/Outerbridgeio/Outerbridge","last_synced_at":"2025-04-04T00:32:10.293Z","repository":{"id":37037143,"uuid":"502346650","full_name":"Outerbridgeio/Outerbridge","owner":"Outerbridgeio","description":"Outerbridge is a low code/no code workflow automation application, focusing on integrating both on-chain and off-chain applications.","archived":false,"fork":false,"pushed_at":"2023-04-11T20:49:00.000Z","size":3686,"stargazers_count":170,"open_issues_count":33,"forks_count":58,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-11-04T21:37:07.803Z","etag":null,"topics":["automation","blockchain","cryptocurrency","hacktoberfest","low-code","no-code","outerbridge","self-hosted","web2","web3","workflow","workflow-automation"],"latest_commit_sha":null,"homepage":"https://outerbridge.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Outerbridgeio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-11T12:47:13.000Z","updated_at":"2024-11-01T15:15:57.000Z","dependencies_parsed_at":"2024-08-01T13:39:27.921Z","dependency_job_id":null,"html_url":"https://github.com/Outerbridgeio/Outerbridge","commit_stats":null,"previous_names":[],"tags_count":41,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Outerbridgeio%2FOuterbridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Outerbridgeio%2FOuterbridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Outerbridgeio%2FOuterbridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Outerbridgeio%2FOuterbridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Outerbridgeio","download_url":"https://codeload.github.com/Outerbridgeio/Outerbridge/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247103290,"owners_count":20884023,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","blockchain","cryptocurrency","hacktoberfest","low-code","no-code","outerbridge","self-hosted","web2","web3","workflow","workflow-automation"],"created_at":"2024-08-01T13:02:15.915Z","updated_at":"2025-04-04T00:32:09.193Z","avatar_url":"https://github.com/Outerbridgeio.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003c!-- markdownlint-disable MD030 --\u003e\n\n# Outerbridge - Automate Web3 and Web2 applications\n\nOuterbridge is a low code/no code workflow automation application, focusing on integrating both on-chain and off-chain applications. The project is licensed under [Apache License Version 2.0](LICENSE.md), source available and free to self-host.\n\n![Outerbridge](./assets/outerbridge_brand.png)\n\n![Outerbridge Screenshot](./assets/screenshot_outerbridge.jpg)\n\n## 💡Why another workflow automation tool?\n\nThere are many awesome automation tools out there, however there isn't one that has the built-in logic of interacting/consuming information from blockchains. Hence, Outerbridge is created to allow people building workflows involving on-chain and off-chain applications, with simple drag and drop interface.\n\n## ⚡Quick Start\n\nWatch [Outerbridge Quickstart Demo](https://www.youtube.com/watch?v=x-AfrkKvZ4M) on Youtube (4mins)\n\n1. Install MongoDB [locally](https://www.mongodb.com/docs/manual/administration/install-community/) OR follow the guide of using MongoDB Atlas [here](https://docs.outerbridge.io/get-started#mongodb-atlas)\n2. Install Outerbridge\n    ```bash\n    npm install -g outerbridge\n    ```\n3. Start Outerbridge\n\n    ```bash\n    npx outerbridge start\n    ```\n\n    If using MongoDB Atlas\n\n    ```bash\n    npx outerbridge start --mongourl=mongodb+srv://\u003cuser\u003e:\u003cpassword\u003e@\u003cyour-cluster\u003e.mongodb.net/outerbridge?retryWrites=true\u0026w=majority\n    ```\n\n4. Open [http://localhost:3000](http://localhost:3000)\n\n## 🐳 Docker\n\n1. Go to `docker` folder at the root of the project\n2. `docker-compose up -d`\n3. This will automatically spins up mongodb and outerbridge containers\n4. Open [http://localhost:3000](http://localhost:3000)\n5. You can bring the containers down by `docker-compose stop`\n6. If using MongoDB Atlas, follow the guide [here](https://docs.outerbridge.io/get-started#-docker)\n\n## 👨‍💻 Developers\n\nOuterbridge has 3 different modules in a single mono repository.\n\n-   `server`: Node backend to serve API logics\n-   `ui`: React frontend\n-   `components`: Nodes and Credentials of applications\n\n### Prerequisite\n\n-   Install MongoDB [locally](https://www.mongodb.com/docs/manual/administration/install-community/) OR register a MongoDB Atlas [here](https://www.mongodb.com/atlas/database)\n-   Install Yarn\n    ```bash\n    npm i -g yarn\n    ```\n\n### Setup\n\n1. Clone the repository\n\n    ```bash\n    git clone https://github.com/Outerbridgeio/Outerbridge.git\n    ```\n\n2. Go into repository folder\n\n    ```bash\n    cd Outerbridge\n    ```\n\n3. Install all dependencies of all modules:\n\n    ```bash\n    yarn install\n    ```\n\n4. Build all the code:\n\n    ```bash\n    yarn build\n    ```\n\n5. Start the app:\n\n    ```bash\n    yarn start\n    ```\n\n    You can now access the app on [http://localhost:3000](http://localhost:3000)\n\n6. For development build:\n\n    ```bash\n    yarn dev\n    ```\n\n    Any code changes will reload the app automatically on [http://localhost:8080](http://localhost:8080)\n\n## 📖 Documentation\n\nOfficial Outerbridge docs can be found under: [https://docs.outerbridge.io](https://docs.outerbridge.io)\n\n## 💻 Cloud Hosted\n\n-   [Cloud Hosted](https://app.outerbridge.io) version of Outerbridge.\n\n## 🌐 Self Host\n\n-   Digital Ocean Droplet: [Setup guide](https://gist.github.com/HenryHengZJ/93210d43d655b4172ee50794ce473b62)\n-   AWS EC2: [Setup guide](https://gist.github.com/HenryHengZJ/627cec19671664a88754c7e383232dc8)\n\n## 🙋 Support\n\nFeel free to ask any questions, raise problems, and request new features in [discussion](https://github.com/Outerbridgeio/Outerbridge/discussions)\n\n## 🙌 Contributing\n\nSee [contributing guide](CONTRIBUTING.md). Reach out to us at [Discord](https://discord.gg/Y9VE4ykPDJ) if you have any questions or issues.\n\n## 📄 License\n\nSource code in this repository is made available under the [Apache License Version 2.0](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOuterbridgeio%2FOuterbridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOuterbridgeio%2FOuterbridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOuterbridgeio%2FOuterbridge/lists"}