Skip to content

Latest commit

 

History

History
103 lines (69 loc) · 1.91 KB

CONTRIBUTING.md

File metadata and controls

103 lines (69 loc) · 1.91 KB

Contributing

Ways to contribute

  • Solve issues
  • Suggest a feature
  • Submit new issues
  • Have fun!

Tools & Technology used

  • ElectronJS
  • React
  • Bulma
  • ws

Steps to run the application!

  1. Fork the repo

  2. Clone the repo locally

    git clone https://github.com/drex44/martian.git
  3. Go to the directory and install dependencies

    cd martian
    yarn
    # or
    npm install
  4. Run the application locally

    yarn dev
    # or
    npm run dev

DevTools

Toggle DevTools:

  • OSX: Cmd Alt I or F12
  • Linux: Ctrl Shift I or F12
  • Windows: Ctrl Shift I or F12

Packaging

Modify electron-builder.yml to edit package info.

For a full list of options see: https://github.com/electron-userland/electron-builder/wiki/Options.

Create a package for OSX, Windows and Linux

npm run pack

Or target a specific platform

npm run pack:mac
npm run pack:win
npm run pack:linux

Tests

npm run test

App created using below boilerplate

How the PR process works 🏗️

✅ Check for open issues

✅ Fork the repo

✅ Make some edits on your own copy that fixes the issues.

✅ Create a new branch and then commit.

✅ Create a pull request that will be merged to the main repo. (Remember to mention what you're fixing)

✅Your code will be reviewed and approved.

✅If you have questions on any issue, kindly use the comment.

Don't forget to comment on the issue, you're working on. otherwise there will be two PRs for the same issue!