From bfd082e66e109858d0c2ff8186efa4f7fc87a24b Mon Sep 17 00:00:00 2001 From: Romain Bertrand Date: Fri, 13 Mar 2026 11:52:12 +0100 Subject: [PATCH] docs: simplify README.md a bit --- README.md | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/README.md b/README.md index f16663e..e3d64f7 100644 --- a/README.md +++ b/README.md @@ -303,38 +303,6 @@ fgj pr view 123 -R owner/repo - Self-hosted Forgejo instances - Gitea instances (compatible API) -## Development - -### Building - -```bash -go build -o fgj -``` - -### Testing - -```bash -go test ./... -``` - -### Project Structure - -``` -fgj/ -├── cmd/ # Command implementations -│ ├── root.go # Root command and config -│ ├── auth.go # Authentication commands -│ ├── pr.go # Pull request commands -│ ├── issue.go # Issue commands -│ └── repo.go # Repository commands -├── internal/ -│ ├── api/ # API client wrapper -│ ├── config/ # Configuration management -│ └── git/ # Git repository detection -├── main.go # Entry point -└── go.mod # Dependencies -``` - ## Contributing Contributions are welcome! Please feel free to submit a Pull Request. @@ -358,9 +326,3 @@ We welcome contributions to implement any of these features! Please check the is ## License MIT License - -## Acknowledgments - -- Inspired by GitHub's `gh` CLI tool -- Built using the [Gitea SDK](https://code.gitea.io/sdk) (compatible with Forgejo) -- Uses [Cobra](https://github.com/spf13/cobra) for CLI framework