I can't thank you enough for wanting to contribute!
-
Fork and clone the repo
-
Then run
yarn
ornpm install
to install the dependencies. -
Create a branch for your PR with
git checkout -b pr/your-branch-name
Tip: Keep your main branch pointing at the original repository and make pull requests from branches on your fork. To do this, run:
git remote add upstream https://github.com/alekangelov/zaibatsi-bud_app.git
git fetch upstream
git branch --set-upstream-to=upstream/main main
- Make an env file
# this is .env.electron.dev
# filename schema is .env.{app-mode}.{environment}
REACT_APP_NAME="Zaibatsu Bud"
REACT_APP_MODE=web | electron
INLINE_RUNTIME_CHUNK=false # THIS HAS TO BE FALSE OR ELSE IT WON'T WORK!
NODE_ENV=development | production
- Make a PR to the original repo!
Click on the issues tab on the repo