Skip to content

Commit

Permalink
Merge pull request #15 from SySagar/rate-limit
Browse files Browse the repository at this point in the history
chore: Rate limit
  • Loading branch information
SySagar authored Jul 5, 2024
2 parents e52ffc4 + e18ef7c commit 37013cf
Show file tree
Hide file tree
Showing 22 changed files with 733 additions and 67 deletions.
5 changes: 5 additions & 0 deletions .changeset/kind-zoos-yell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'gitemo-cli': patch
---

rate-limiting to prevent api keys
5 changes: 5 additions & 0 deletions .changeset/six-beds-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'gitemo-cli': minor
---

configuration options for the cli
5 changes: 5 additions & 0 deletions .changeset/tasty-snakes-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'gitemo-cli': patch
---

authenticated commands using clerk token
30 changes: 21 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,16 @@ gitemo --help
Usage
$ gitemo [option] [command]
Options
--commit, -c Interactively commit using the prompts
--list, -l List all the available git emojis
--version, -v Print gitemo-cli installed version
--commit, -c Interactively commit using the prompts
--aiCommit, --aic Use ai for generating commits
--config, --g To change configuration
--list, -l List all the available git emojis
--version, -v Print gitemo-cli installed version
Commands
commit Interactively commit using the prompts
list List all the available gitmojis
version Print gitemo-cli installed version
commit Interactively commit using the prompts
list List all the available gitmojis
version Print gitemo-cli installed version
config Change configuration
Examples
$ gitemo -c
```
Expand All @@ -46,7 +49,7 @@ You can use the commit functionality to develop your commits message based on pr
Start the interactive commit client, to auto generate your commit based on your prompts.

```bash
gitemo -c
gitemo --c
```

##### Options
Expand All @@ -67,13 +70,22 @@ gitemo -c --title="Commit" --message="Message" --scope="Scope"
Pretty print all the available git emojis.

```bash
gitemo -l
gitemo --l
```

### Version

List down the current version of the cli

```bash
gitemo -v
gitemo --v
```
### Config

You can use the default configs or customize your own configurations.

Some of the default settings are:

```bash
gitemo --g
```
Loading

0 comments on commit 37013cf

Please sign in to comment.