change github

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-11-02 01:41:51 +01:00
padre aff6c82553
commit b3e8d34336
Se han modificado 20 ficheros con 31 adiciones y 31 borrados

Ver fichero

@@ -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
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Ver fichero

@@ -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

Ver fichero

@@ -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

Ver fichero

@@ -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

Ver fichero

@@ -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)

Ver fichero

@@ -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
```

Ver fichero

@@ -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

2
go.mod
Ver fichero

@@ -1,4 +1,4 @@
module github.com/yourusername/buque
module github.com/manalejandro/buque
go 1.21

Ver fichero

@@ -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{

Ver fichero

@@ -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{

Ver fichero

@@ -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{

Ver fichero

@@ -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{

Ver fichero

@@ -5,7 +5,7 @@ import (
"os"
"github.com/spf13/cobra"
"github.com/yourusername/buque/internal/config"
"github.com/manalejandro/buque/internal/config"
)
var (

Ver fichero

@@ -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{

Ver fichero

@@ -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

Ver fichero

@@ -5,7 +5,7 @@ import (
"os"
"path/filepath"
"github.com/yourusername/buque/internal/models"
"github.com/manalejandro/buque/internal/models"
"gopkg.in/yaml.v3"
)

Ver fichero

@@ -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

Ver fichero

@@ -10,7 +10,7 @@ import (
"strings"
"time"
"github.com/yourusername/buque/internal/models"
"github.com/manalejandro/buque/internal/models"
)
// ComposeManager manages Docker Compose operations

Ver fichero

@@ -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 (

Ver fichero

@@ -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