-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: karan <[email protected]>
- Loading branch information
Showing
7 changed files
with
69 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
/target | ||
|
||
# Oranda | ||
oranda-debug.log | ||
/public | ||
cargo-dist/public |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "github-account-tui" | ||
name = "lazygh" | ||
version = "0.1.0" | ||
authors = ["Karan Janthe <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
# github-account-tui | ||
# LazyGH | ||
|
||
This is a [Ratatui] app generated by the [Simple template]. | ||
LazyGH is a Terminal User Interface (TUI) application for managing multiple GitHub accounts easily. It allows you to switch between different Git configurations and SSH keys seamlessly. | ||
|
||
[Ratatui]: https://ratatui.rs | ||
[Simple Template]: https://github.com/ratatui/templates/tree/main/simple | ||
## Demo | ||
|
||
## License | ||
Check out the demo to see LazyGH in action: | ||
|
||
Copyright (c) Karan Janthe <[email protected]> | ||
![LazyGH Demo](demo.gif) | ||
|
||
This project is licensed under the MIT license ([LICENSE] or <http://opensource.org/licenses/MIT>) | ||
## Features | ||
|
||
[LICENSE]: ./LICENSE | ||
- Manage multiple GitHub accounts | ||
- Switch between accounts with ease | ||
- Automatically update Git global configuration | ||
- Generate and manage SSH keys for each account | ||
- Copy SSH public keys to clipboard | ||
|
||
## Installation | ||
|
||
To install LazyGH, you need to have Rust and Cargo installed on your system. Then, you can clone this repository and build the project: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"build": { | ||
"path_prefix": "oranda" | ||
}, | ||
"styles": { | ||
"theme": "axodark", | ||
"favicon": "https://www.axo.dev/favicon.ico" | ||
}, | ||
"marketing": { | ||
"social": { | ||
"image": "https://www.axo.dev/meta_small.jpeg", | ||
"image_alt": "axo", | ||
"twitter_account": "@KaranJanthe" | ||
} | ||
}, | ||
"components": { | ||
"changelog": true, | ||
"artifacts": { | ||
"package_managers": { | ||
"preferred": { | ||
"npm": "npm install @axodotdev/oranda --save-dev", | ||
"cargo": "cargo install oranda --locked --profile=dist" | ||
}, | ||
"additional": { | ||
"npx": "npx @axodotdev/oranda", | ||
"binstall": "cargo binstall oranda", | ||
"nix-env": "nix-env -i oranda", | ||
"nix flake": "nix profile install github:axodotdev/oranda" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters