From b3e8d34336799e5d08d7db266ffc2d168144f987 Mon Sep 17 00:00:00 2001 From: ale Date: Sun, 2 Nov 2025 01:41:51 +0100 Subject: [PATCH] change github Signed-off-by: ale --- BANNER.txt | 2 +- CHANGELOG.md | 4 ++-- CONTRIBUTING.md | 2 +- README.md | 8 ++++---- docs/PROJECT_STRUCTURE.md | 2 +- docs/QUICK_START.md | 2 +- examples/example_usage.go | 8 ++++---- go.mod | 2 +- internal/cmd/compose.go | 2 +- internal/cmd/env.go | 2 +- internal/cmd/logs.go | 4 ++-- internal/cmd/proxy.go | 2 +- internal/cmd/root.go | 2 +- internal/cmd/stats.go | 4 ++-- internal/cmd/utils.go | 2 +- internal/config/config.go | 2 +- internal/docker/client.go | 2 +- internal/docker/compose.go | 2 +- internal/proxy/nginx.go | 4 ++-- internal/stats/collector.go | 4 ++-- 20 files changed, 31 insertions(+), 31 deletions(-) diff --git a/BANNER.txt b/BANNER.txt index f9c622e..21646bc 100644 --- a/BANNER.txt +++ b/BANNER.txt @@ -30,6 +30,6 @@ environments on a single machine with nginx-proxy integration. buque stats --continuous # Monitor containers 📚 Documentation: - https://github.com/yourusername/buque + https://github.com/manalejandro/buque ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ diff --git a/CHANGELOG.md b/CHANGELOG.md index dc4c721..b01a5eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,5 +57,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Flexible environment selection - Global configuration file support -[Unreleased]: https://github.com/yourusername/buque/compare/v1.0.0...HEAD -[1.0.0]: https://github.com/yourusername/buque/releases/tag/v1.0.0 +[Unreleased]: https://github.com/manalejandro/buque/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/manalejandro/buque/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f295341..78c2ec7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -61,7 +61,7 @@ Enhancement suggestions are tracked as GitHub issues. When creating an enhanceme ```bash # Clone your fork -git clone https://github.com/yourusername/buque.git +git clone https://github.com/manalejandro/buque.git cd buque # Install dependencies diff --git a/README.md b/README.md index ba1cc31..51757c5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ ```bash # Clone the repository -git clone https://github.com/yourusername/buque.git +git clone https://github.com/manalejandro/buque.git cd buque # Build and install @@ -39,7 +39,7 @@ make build ### Using Go Install ```bash -go install github.com/yourusername/buque/cmd/buque@latest +go install github.com/manalejandro/buque/cmd/buque@latest ``` ## Quick Start @@ -408,8 +408,8 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file If you encounter any issues or have questions: -- Open an issue on [GitHub](https://github.com/yourusername/buque/issues) -- Check the [documentation](https://github.com/yourusername/buque/wiki) +- Open an issue on [GitHub](https://github.com/manalejandro/buque/issues) +- Check the [documentation](https://github.com/manalejandro/buque/wiki) ## Roadmap diff --git a/docs/PROJECT_STRUCTURE.md b/docs/PROJECT_STRUCTURE.md index f442a03..a7158b2 100644 --- a/docs/PROJECT_STRUCTURE.md +++ b/docs/PROJECT_STRUCTURE.md @@ -208,7 +208,7 @@ buque stats --continuous ### As Library Developers can import and use internal packages: ```go -import "github.com/yourusername/buque/internal/docker" +import "github.com/manalejandro/buque/internal/docker" compose, _ := docker.NewComposeManager() compose.Up(ctx, environment, true) diff --git a/docs/QUICK_START.md b/docs/QUICK_START.md index f331290..e7f3138 100644 --- a/docs/QUICK_START.md +++ b/docs/QUICK_START.md @@ -18,7 +18,7 @@ ### Install from source ```bash -git clone https://github.com/yourusername/buque.git +git clone https://github.com/manalejandro/buque.git cd buque make install ``` diff --git a/examples/example_usage.go b/examples/example_usage.go index 0e994bf..e72b4ec 100644 --- a/examples/example_usage.go +++ b/examples/example_usage.go @@ -6,10 +6,10 @@ import ( "log" "time" - "github.com/yourusername/buque/internal/config" - "github.com/yourusername/buque/internal/docker" - "github.com/yourusername/buque/internal/models" - "github.com/yourusername/buque/internal/stats" + "github.com/manalejandro/buque/internal/config" + "github.com/manalejandro/buque/internal/docker" + "github.com/manalejandro/buque/internal/models" + "github.com/manalejandro/buque/internal/stats" ) // This is an example of using Buque as a library in your own Go code diff --git a/go.mod b/go.mod index 4b3bf2d..422a498 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/yourusername/buque +module github.com/manalejandro/buque go 1.21 diff --git a/internal/cmd/compose.go b/internal/cmd/compose.go index 51fd74e..4abd270 100644 --- a/internal/cmd/compose.go +++ b/internal/cmd/compose.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/docker" + "github.com/manalejandro/buque/internal/docker" ) var upCmd = &cobra.Command{ diff --git a/internal/cmd/env.go b/internal/cmd/env.go index 12a82c4..b7e8401 100644 --- a/internal/cmd/env.go +++ b/internal/cmd/env.go @@ -8,7 +8,7 @@ import ( "time" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/models" ) var envCmd = &cobra.Command{ diff --git a/internal/cmd/logs.go b/internal/cmd/logs.go index b979d14..bf9a339 100644 --- a/internal/cmd/logs.go +++ b/internal/cmd/logs.go @@ -5,8 +5,8 @@ import ( "fmt" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/docker" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/docker" + "github.com/manalejandro/buque/internal/models" ) var logsCmd = &cobra.Command{ diff --git a/internal/cmd/proxy.go b/internal/cmd/proxy.go index f9395a9..5031b69 100644 --- a/internal/cmd/proxy.go +++ b/internal/cmd/proxy.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/proxy" + "github.com/manalejandro/buque/internal/proxy" ) var proxyCmd = &cobra.Command{ diff --git a/internal/cmd/root.go b/internal/cmd/root.go index b557a89..79e36fd 100644 --- a/internal/cmd/root.go +++ b/internal/cmd/root.go @@ -5,7 +5,7 @@ import ( "os" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/config" + "github.com/manalejandro/buque/internal/config" ) var ( diff --git a/internal/cmd/stats.go b/internal/cmd/stats.go index d294903..19a0bef 100644 --- a/internal/cmd/stats.go +++ b/internal/cmd/stats.go @@ -8,8 +8,8 @@ import ( "time" "github.com/spf13/cobra" - "github.com/yourusername/buque/internal/models" - "github.com/yourusername/buque/internal/stats" + "github.com/manalejandro/buque/internal/models" + "github.com/manalejandro/buque/internal/stats" ) var statsCmd = &cobra.Command{ diff --git a/internal/cmd/utils.go b/internal/cmd/utils.go index 91f8749..da51150 100644 --- a/internal/cmd/utils.go +++ b/internal/cmd/utils.go @@ -1,7 +1,7 @@ package cmd import ( - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/models" ) // getEnvironmentsToProcess returns environments to process based on args diff --git a/internal/config/config.go b/internal/config/config.go index 8841ad5..64a4191 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -5,7 +5,7 @@ import ( "os" "path/filepath" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/models" "gopkg.in/yaml.v3" ) diff --git a/internal/docker/client.go b/internal/docker/client.go index 968683f..5706a63 100644 --- a/internal/docker/client.go +++ b/internal/docker/client.go @@ -11,7 +11,7 @@ import ( "github.com/docker/docker/api/types/container" "github.com/docker/docker/api/types/filters" "github.com/docker/docker/client" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/models" ) // Client wraps Docker client operations diff --git a/internal/docker/compose.go b/internal/docker/compose.go index d8fa3ea..c19d498 100644 --- a/internal/docker/compose.go +++ b/internal/docker/compose.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/models" ) // ComposeManager manages Docker Compose operations diff --git a/internal/proxy/nginx.go b/internal/proxy/nginx.go index ae7657e..ae172b7 100644 --- a/internal/proxy/nginx.go +++ b/internal/proxy/nginx.go @@ -6,8 +6,8 @@ import ( "os" "path/filepath" - "github.com/yourusername/buque/internal/docker" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/docker" + "github.com/manalejandro/buque/internal/models" ) const ( diff --git a/internal/stats/collector.go b/internal/stats/collector.go index 6c5b097..a632512 100644 --- a/internal/stats/collector.go +++ b/internal/stats/collector.go @@ -6,8 +6,8 @@ import ( "sort" "time" - "github.com/yourusername/buque/internal/docker" - "github.com/yourusername/buque/internal/models" + "github.com/manalejandro/buque/internal/docker" + "github.com/manalejandro/buque/internal/models" ) // Collector collects and manages container statistics