Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.56 KB

CONTRIBUTING.md

File metadata and controls

57 lines (43 loc) · 1.56 KB

Contribution Guide

Welcome!

Hi! Thank you for taking your precious time to contribute to War Brokers Projects! We hope you have a pleasant experience working with us <3

How is the project organized?

The War Brokers Projects monorepo is managed using the following technologies:

Online Infrastructure

Infrastructure Diagram

Setting up

⚠️ WAIT! ⚠️

If you are using Windows OS, make sure to run all commands in git bash which you can download here.

  1. Install the following

    • git
    • vscode
    • NodeJS
    • yarn
  2. Fork this repository

  3. git clone the forked repository to your computer

  4. Open cloned repository with vscode

    • install recommended extensions (a toast should show up on the bottom right corner of the window)
  5. Install dependencies

    yarn install
    
  6. Initialize Git Hooks

    yarn prepare
    
  7. read the README.md files of projects you would like to work on. Projects are located in apps and libs directory. You can run package.json scripts in the project directory like so:

    cd apps/wbtimeline && yarn dev
    

More