The mobile app has been deprecated in favor of the official GitHub mobile app the is coming out soon.
You can download Gitify for free from either the website www.gitify.io or from the GitHub repository releases page.
You can also install Gitify via Homebrew Cask
brew cask install gitify
Gitify currently only supports mac OS.
- Node 10+
- Yarn
- Electron
- TypeScript
- React
- Redux
yarn install
First you will need to set the testing CLIENT_ID
and CLIENT_SECRET
in src/js/utils/constants.js
file. You can use the development app credentials (use at your own discretion):
Client Id: 3fef4433a29c6ad8f22c
Client Secret Key: 9670de733096c15322183ff17ed0fc8704050379
To watch for changes in the src
directory:
yarn run watch
To run the actual electron app:
yarn start
To prepare the app for distribution run:
yarn run build
yarn run pack
yarn run make:macos
There are 2 linters for js
& scss
and unit tests with jest
.
// Run only unit tests
yarn run jest
// Run linter & unit tests with coverage
yarn run test
Some organisations require applications to request access before allowing access to any data (including notifications) about their repositories.
To check if Gitify is approved by your organisation you can go to https://github.com/settings/applications, then click on Gitify and scroll to Organization access.
Since version 1.1.0
you can now debug Gitify by pressing alt+cmd+I
. This will open the devtools and then you can see any logs, network requests etc.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
- Make sure tests are passing
Gitify is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.