{"id":14976179,"url":"https://github.com/glisten-star/joystream_local","last_synced_at":"2025-10-02T08:30:56.403Z","repository":{"id":200154640,"uuid":"703362783","full_name":"elizabethdev553/joystream-goldwolf","owner":"elizabethdev553","description":"Joystream Monorepo","archived":false,"fork":true,"pushed_at":"2023-12-12T11:37:39.000Z","size":125167,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-09-24T19:32:12.429Z","etag":null,"topics":["backend","blockchain","graphql-server","joystream","reactjs"],"latest_commit_sha":null,"homepage":"http://www.joystream.org","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Joystream/joystream","license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elizabethdev553.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-10-11T05:27:05.000Z","updated_at":"2023-10-18T06:42:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"592500f7-550e-4fc2-a53c-00cecd061cc4","html_url":"https://github.com/elizabethdev553/joystream-goldwolf","commit_stats":null,"previous_names":["goldwolf115/joystream-goldwolf","elizabethdev553/joystream-goldwolf"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethdev553%2Fjoystream-goldwolf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethdev553%2Fjoystream-goldwolf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethdev553%2Fjoystream-goldwolf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethdev553%2Fjoystream-goldwolf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elizabethdev553","download_url":"https://codeload.github.com/elizabethdev553/joystream-goldwolf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219875661,"owners_count":16554697,"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":["backend","blockchain","graphql-server","joystream","reactjs"],"created_at":"2024-09-24T13:53:26.389Z","updated_at":"2025-10-02T08:30:56.397Z","avatar_url":"https://github.com/elizabethdev553.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Joystream\n\nThis is the main code repository for all Joystream software. In this mono-repo you will find all the software required to run a Joystream network: The Joystream full node, runtime and all reusable substrate runtime modules that make up the Joystream runtime. In addition to all front-end apps and infrastructure servers necessary for operating the network.\n\n## Overview\n\nThe Joystream network builds on the [substrate](https://substrate.io/) blockchain framework, and adds additional\nfunctionality to support the [various roles](https://joystream.gitbook.io/testnet-workspace/system/working-groups) that can be entered into on the platform.\n\n## Development\n\nFor best results use GNU/Linux with minimum glibc version 2.28 for nodejs v18 to work.\nSo Ubuntu 20.04 or newer.\n\nYou can check your version of glibc with `ldd --version`\n\nThe following tools are required for building, testing and contributing to this repo:\n\n- [Rust](https://www.rust-lang.org/tools/install) toolchain - _required_\n- [nodejs](https://nodejs.org/) \u003e= v14.18.x - _required_ (However volta will try to use v18.6)\n- [yarn classic](https://classic.yarnpkg.com/en/docs/install) package manager v1.22.x- _required_\n- [docker](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository) v2.20.x or higher - _required_\n- [ansible](https://www.ansible.com/) - _optional_\n\nIf you use VSCode as your code editor we recommend using the workspace [settings](devops/vscode/settings.json) for recommend eslint plugin to function properly.\n\nAfter cloning the repo run the following to get started:\n\n### Install development tools\n```sh\n./setup.sh\n```\n\n### If you prefer your own node version manager\nInstall development tools without Volta version manager.\n\n```sh\n./setup.sh --no-volta\n```\n\n### For older operating systems which don't support node 18\nModify the root `package.json` and change volta section to use node version 16.20.1 instead of 18.6.0\n```json\n\"volta\": {\n    \"node\": \"16.20.1\",\n    \"yarn\": \"1.22.19\"\n}\n```\n\n### Run local development network\n\n```sh\n# Build local npm packages\nyarn build\n\n# Build joystream/node docker testing image\nRUNTIME_PROFILE=TESTING yarn build:node:docker\n\n# Start a local development network\nyarn start\n```\n\n## Software\n\n**Substrate blockchain**\n\n- [joystream-node](./bin/node)\n- [runtime](./runtime)\n- [runtime modules](./runtime-modules)\n\n**Server Applications - infrastructure**\n\n- [Storage Node](./storage-node) - Media Storage Infrastructure\n- [Query Node](./query-node)\n- [Distributor Node](./distributor-node)\n\n**Front-end Applications**\n\n- [Pioneer v2](https://github.com/Joystream/pioneer) - Main UI for accessing Joystream community and governance features\n- [Atlas](https://github.com/Joystream/atlas) - Media Player\n\n**Tools and CLI**\n\n- [joystream-cli](./cli) - CLI for community and governance activities\n\n**Testing infrastructure**\n\n- [Network integration](./tests/network-tests) - Joystream network integration testing framework\n\n## Running a local full node\n\n```sh\ngit checkout master\nWASM_BUILD_TOOLCHAIN=nightly-2022-11-15 cargo build --release\n./target/release/joystream-node -- --pruning archive --chain joy-mainnet.json\n```\n\nLearn more about [joystream-node](bin/node/README.md).\n\nA step by step guide to setup a full node and validator on the Joystream main network, can be found [here](https://handbook.joystream.org/system/validation).\n\n### Pre-built joystream-node binaries\nLook under the 'Assets' section:\n\n- Ephesus release [v8.3.0](https://github.com/Joystream/joystream/releases/tag/v12.2001.0)\n\n### Mainnet chainspec file\n- [joy-mainnet.json](https://github.com/Joystream/joystream/releases/download/v12.1000.0/joy-mainnet.json)\n\n### Integration tests\n\n```bash\n# Make sure yarn packages are built\nyarn build\n\n# Build the test joystream-node\nRUNTIME_PROFILE=TESTING yarn build:node:docker\n\n# Run tests\nyarn test\n```\n\n### Contributing\n\nWe have lots of good first [issues](https://github.com/Joystream/joystream/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) open to help you get started on contributing code. If you are not a developer you can still make valuable contributions by testing our software and providing feedback and opening new issues.\n\nA description of our [branching model](https://github.com/Joystream/joystream/issues/638) will help you to understand where work on different software components happens, and consequently where to direct your pull requests.\n\nWe rely on `eslint` for code quality of our JavaScript and TypeScript code and `prettier` for consistent formatting. For Rust we rely on `rustfmt` and `clippy`.\n\nThe [husky](https://www.npmjs.com/package/husky#ci-servers) npm package is used to manage the project git-hooks. This is automatically installed and setup when you run `yarn install`.\n\nWhen you `git commit` and `git push` some scripts will run automatically to ensure committed code passes lint, tests, and code-style checks.\n\nDuring a rebase/merge you may want to skip all hooks, you can use `HUSKY_SKIP_HOOKS` environment variable.\n\n```\nHUSKY_SKIP_HOOKS=1 git rebase ...\n```\n\n## RLS Extension in VScode or Atom Editors\n\nIf you use RLS extension in your IDE, start your editor with the `BUILD_DUMMY_WASM_BINARY=1` environment set to workaround a build issue that occurs in the IDE only.\n\n`BUILD_DUMMY_WASM_BINARY=1 code ./joystream`\n\n## Authors\n\nSee the list of [contributors](https://github.com/Joystream/joystream/graphs/contributors) who participated in this project.\n\n## License\n\nAll software under this project is licensed as [GPLv3](./LICENSE) unless otherwise indicated.\n\n## Acknowledgments\n\nThanks to the whole [Parity Tech](https://www.parity.io/) team for making substrate and helping in chat with tips, suggestions, tutorials and answering all our questions during development.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglisten-star%2Fjoystream_local","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglisten-star%2Fjoystream_local","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglisten-star%2Fjoystream_local/lists"}