Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Gitification-App/gitification
Manage github notifications on your menubar.
https://github.com/Gitification-App/gitification
github-notifications tauri typescript vue
Last synced: 3 months ago
JSON representation
Manage github notifications on your menubar.
- Host: GitHub
- URL: https://github.com/Gitification-App/gitification
- Owner: Gitification-App
- License: gpl-3.0
- Created: 2023-01-29T23:04:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-19T16:40:54.000Z (8 months ago)
- Last Synced: 2024-05-02T02:28:48.982Z (6 months ago)
- Topics: github-notifications, tauri, typescript, vue
- Language: Vue
- Homepage:
- Size: 8.66 MB
- Stars: 71
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-tauri - Gitification - Menu bar app for managing Github notifications. (Applications / Productivity)
README
[Download page](https://gitification.app/)
# Gitification (Beta)
An app to view your notifications easily on your menubar.- Gitification uses Tauri under the hood, so it does not ship a 200mb chrome browser. App size is just lower than 20 or 10mb.
- Gitification doesn't make you type your username and password, auth is done in browser with a single click.
- Gitification is built with `TypeScript`, `Vue`, `Tauri` and `Vite` with nice plugins.
# Size Comparison with Gitify
# Screenshots
# Building The App
If you want to build Gitification by yourself:- Install rust and cargo.
- Install pnpm `npm install -g pnpm`
- Install packages `pnpm install`
- Create `.env` file, you can see required fields in `.env.example`.
- Build the app `pnpm tauri build`
- After that you can find executable in `src-tauri/target` folder.# Contributing
If you want to contribute you should install these extensions and set-up these settings.- Install `Eslint` from vscode marketplace.
- Install `Volar` from vscode marketplace.
- Add the following settings to your `.vscode/settings.json````json
{
"prettier.enable": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml"
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.enable": true,
"eslint.experimental.useFlatConfig": true,
"vue.complete.casing.props": "camel",
"vue.complete.casing.tags": "pascal",
"vue.complete.normalizeComponentImportName": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
```
- And lastly in extensions page search `@builtin typescript` then disable TypeScript LSP for your workspace, after reloading vscode you're good to go.