This repository has been archived by the owner on May 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
How to Collaborate
MotorTruck1221 edited this page Feb 23, 2023
·
2 revisions
- Install Node.js
- Install npm
- Install yarn
- Install git (If you are on Windows, you can use Git Bash instead of the default command prompt)
- Alternativley you can install node and npm using nvm
- Windows: nvm-windows
- Linux And Mac: nvm
- Clone the repository using
git clone https://github.com/ruby-network/ruby
- Change directory to the cloned repository
cd ruby
- Install yarn using
npm install -g yarn
- Install the dependencies using
yarn install
- Run the project using
yarn prod
- To modify the frontend only, run
yarn dev
- To modify the backend and frontend, run
yarn prod
- this builds the frontend and starts the server
- To build the frontend only, run
yarn build
- To start the server only without building the frontend, run
yarn start
- Fork the repository
- Make a new branch for your changes
- Make your changes
- Commit and push your changes to your fork
- Make a pull request to the ruby repository
- Remember to follow contribution guidelines and code of conduct
The developers section has some information for contributors as well, but it is not necessary to follow it if you are not a developer.