{"id":30612656,"url":"https://github.com/evolvedbinary/fusion-studio","last_synced_at":"2025-08-30T05:34:49.876Z","repository":{"id":39707471,"uuid":"155664440","full_name":"evolvedbinary/fusion-studio","owner":"evolvedbinary","description":"An IDE and Management Tool for FusionDB","archived":false,"fork":false,"pushed_at":"2022-12-21T13:11:29.000Z","size":4245,"stargazers_count":4,"open_issues_count":18,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-24T12:23:47.110Z","etag":null,"topics":["fusion-studio","fusiondb","ide","theia-ide"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evolvedbinary.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-01T05:05:07.000Z","updated_at":"2024-04-24T12:23:47.111Z","dependencies_parsed_at":"2023-01-30T03:46:08.862Z","dependency_job_id":null,"html_url":"https://github.com/evolvedbinary/fusion-studio","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/evolvedbinary/fusion-studio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvedbinary%2Ffusion-studio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvedbinary%2Ffusion-studio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvedbinary%2Ffusion-studio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvedbinary%2Ffusion-studio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evolvedbinary","download_url":"https://codeload.github.com/evolvedbinary/fusion-studio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvedbinary%2Ffusion-studio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272808936,"owners_count":24996603,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["fusion-studio","fusiondb","ide","theia-ide"],"created_at":"2025-08-30T05:34:48.927Z","updated_at":"2025-08-30T05:34:49.840Z","avatar_url":"https://github.com/evolvedbinary.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fusion Studio\n[![CircleCI](https://circleci.com/gh/evolvedbinary/fusion-studio/tree/master.svg?style=svg)](https://circleci.com/gh/evolvedbinary/fusion-studio/tree/master)\n[![License](https://img.shields.io/badge/license-GPL%203-blue.svg)](https://opensource.org/licenses/GPL-3.0)\n\nAn IDE and Management Tool for [FusionDB](https://www.fusiondb.com).\n\nThis repository holds the code for packaging the IDE as a client Desktop application. \nTo use this with FusionDB you will also need the server-side API installed, you can find that here: [fusion-studio-api](https://github.com/evolvedbinary/fusion-studio-api).\n\nThe latest reslease version of FusionDB is available for download from [https://fusiondb.com](https://fusiondb.com).\n\n\n## Requirements\n* Node.js 14\n* yarn 1.17.3+\n* Git 2.11+\n* Java 8\n* Python 3\n* rpmbuild (for building RPM's on Linux)\n* Apple Developer Certificate and Account (for signing DMG's on macOS)\n\n## Building the Fusion Studio Application\n\nWe suggest using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) for running and managing different node versions.\n\n```bash\ncurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash\nnvm install 14\nnvm use 14\n```\n\nInstall the latest version of yarn compatible with the recommended node version.\n\n```bash\nnpm install -g yarn\n```\n\n### On Linux and macOS:\n\n```bash\ngit clone https://github.com/evolvedbinary/fusion-studio.git\ncd fusion-studio\nexport NODE_OPTIONS=\"--max-old-space-size=8192\"\nyarn install --ignore-engines \u0026\u0026 yarn build\n```\n\n### On Windows:\n```pwsh\ngit clone https://github.com/evolvedbinary/fusion-studio.git\ncd fusion-studio\nset NODE_OPTIONS=--max-old-space-size=8192\nyarn install --ignore-engines \u0026\u0026 yarn build\n```\n\n## Creating Application Packages\n\nAfter building you can produce native application packages such as: `.exe`, `.dmg`, `.deb`, and `.rpm`.\n\n### On Linux and Windows:\n```bash\nyarn package\n```\n\n### On macOS:\nThe `APPLE_ID` and `APPLE_ID_PASSWORD` are used for notarization of the app. If you don't need notarization you can skip these. \nRemember, notarization can be a slow process which can take 10+ minutes with little or no output to the console … so remain patient!\n\n```bash\nAPPLE_ID=me@something.com APPLE_ID_PASSWORD=abcd-efgh-ijkl-mnop yarn package\n```\n\nDesktop Applications are then available in the `fusion-studio/dist` folder.\n\n## Building a Release\n\nRelease packages are built for Linux, Mac, and Windows platforms.\n\nAs code-signing of Mac packages can only be performed on macOS, we assume your starting point is a Mac with Docker installed.\n\n```\n$ git clone https://github.com/evolvedbinary/fusion-studio.git\n$ cd fusion-studio\n$ yarn \u0026\u0026 yarn build \u0026\u0026 yarn package\n\n$ docker run -ti \\\n --env USER=$UID \\\n --env GROUP=$GID \\\n -v ${PWD}:/project evolvedbinary/fs-build:centos7_x64-be \\\n /bin/bash -c \"bash /root/build.sh\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolvedbinary%2Ffusion-studio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevolvedbinary%2Ffusion-studio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolvedbinary%2Ffusion-studio/lists"}