refactor: update project references from Adekabang to khairul169

- Change Docker image references in docker-compose.yml and documentation
- Update Go module path and import statements in backend code
- Modify build script to reflect new image name
- Remove outdated copyright information from LICENSE file
This commit is contained in:
Adekabang 2025-09-29 20:26:44 -04:00
parent 2ffdc69d47
commit 8eaee0be8c
17 changed files with 26 additions and 27 deletions

View File

@ -24,9 +24,9 @@ When a new tag is pushed, the workflow will:
## Docker Images ## Docker Images
The Docker images will be available at: The Docker images will be available at:
- `ghcr.io/adekabang/garage-ui:latest` - `ghcr.io/khairul169/garage-webui:latest`
- `ghcr.io/adekabang/garage-ui:X.Y.Z` (version tag) - `ghcr.io/khairul169/garage-webui:X.Y.Z` (version tag)
- `ghcr.io/adekabang/garage-ui:X.Y` (major.minor tag) - `ghcr.io/khairul169/garage-webui:X.Y` (major.minor tag)
## Binaries ## Binaries

View File

@ -8,7 +8,7 @@ on:
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
DOCKER_HUB_REGISTRY: adekabang/garage-webui DOCKER_HUB_REGISTRY: khairul169/garage-webui
jobs: jobs:
build-and-push-image: build-and-push-image:

View File

@ -1,7 +1,6 @@
MIT License MIT License
Copyright (c) 2024-2025 Khairul Hidayat Copyright (c) 2024-2025 Khairul Hidayat
Copyright (c) 2025 Mohammad Raska (Adekabang) - Garage Web UI v2 upgrade
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,4 +1,4 @@
module Adekabang/garage-webui module khairul169/garage-webui
go 1.23.0 go 1.23.0

View File

@ -1,10 +1,10 @@
package main package main
import ( import (
"Adekabang/garage-webui/router"
"Adekabang/garage-webui/ui"
"Adekabang/garage-webui/utils"
"fmt" "fmt"
"khairul169/garage-webui/router"
"khairul169/garage-webui/ui"
"khairul169/garage-webui/utils"
"log" "log"
"net/http" "net/http"
"os" "os"

View File

@ -1,8 +1,8 @@
package middleware package middleware
import ( import (
"Adekabang/garage-webui/utils"
"errors" "errors"
"khairul169/garage-webui/utils"
"net/http" "net/http"
) )

View File

@ -1,9 +1,9 @@
package router package router
import ( import (
"Adekabang/garage-webui/utils"
"encoding/json" "encoding/json"
"errors" "errors"
"khairul169/garage-webui/utils"
"net/http" "net/http"
"strings" "strings"

View File

@ -1,13 +1,13 @@
package router package router
import ( import (
"Adekabang/garage-webui/schema"
"Adekabang/garage-webui/utils"
"context" "context"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"io" "io"
"khairul169/garage-webui/schema"
"khairul169/garage-webui/utils"
"net/http" "net/http"
"strconv" "strconv"
"strings" "strings"

View File

@ -1,10 +1,10 @@
package router package router
import ( import (
"Adekabang/garage-webui/schema"
"Adekabang/garage-webui/utils"
"encoding/json" "encoding/json"
"fmt" "fmt"
"khairul169/garage-webui/schema"
"khairul169/garage-webui/utils"
"net/http" "net/http"
) )

View File

@ -1,7 +1,7 @@
package router package router
import ( import (
"Adekabang/garage-webui/utils" "khairul169/garage-webui/utils"
"net/http" "net/http"
) )

View File

@ -1,8 +1,8 @@
package router package router
import ( import (
"Adekabang/garage-webui/utils"
"fmt" "fmt"
"khairul169/garage-webui/utils"
"net/http" "net/http"
"net/http/httputil" "net/http/httputil"
"net/url" "net/url"

View File

@ -1,7 +1,7 @@
package router package router
import ( import (
"Adekabang/garage-webui/middleware" "khairul169/garage-webui/middleware"
"net/http" "net/http"
) )

View File

@ -1,12 +1,12 @@
package utils package utils
import ( import (
"Adekabang/garage-webui/schema"
"bytes" "bytes"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"io" "io"
"khairul169/garage-webui/schema"
"log" "log"
"net/http" "net/http"
"os" "os"

View File

@ -14,7 +14,7 @@ services:
- 3903:3903 - 3903:3903
webui: webui:
image: ghcr.io/adekabang/garage-webui:latest image: ghcr.io/khairul169/garage-webui:latest
container_name: garage-webui container_name: garage-webui
restart: unless-stopped restart: unless-stopped
volumes: volumes:

View File

@ -741,8 +741,8 @@ import (
"github.com/aws/aws-sdk-go-v2/service/s3" "github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/joho/godotenv" "github.com/joho/godotenv"
"Adekabang/garage-webui/schema" "khairul169/garage-webui/schema"
"Adekabang/garage-webui/utils" "khairul169/garage-webui/utils"
) )
``` ```

View File

@ -137,7 +137,7 @@ services:
- 3903:3903 # Admin API - 3903:3903 # Admin API
webui: webui:
image: adekabang/garage-webui:latest image: khairul169/garage-webui:latest
volumes: volumes:
- ./garage.toml:/etc/garage.toml:ro - ./garage.toml:/etc/garage.toml:ro
ports: ports:
@ -154,14 +154,14 @@ docker run -p 3909:3909 \
-v ./garage.toml:/etc/garage.toml:ro \ -v ./garage.toml:/etc/garage.toml:ro \
-e API_BASE_URL="http://garage-host:3903" \ -e API_BASE_URL="http://garage-host:3903" \
-e API_ADMIN_KEY="your-admin-token" \ -e API_ADMIN_KEY="your-admin-token" \
adekabang/garage-webui:latest khairul169/garage-webui:latest
``` ```
### 🖥️ Binary Deployment ### 🖥️ Binary Deployment
```bash ```bash
# Download the binary file # Download the binary file
wget -O garage-webui https://github.com/Adekabang/garage-webui/releases/download/1.0.9/garage-webui-v1.0.9-linux-amd64 wget -O garage-webui https://github.com/khairul169/garage-webui/releases/download/1.0.9/garage-webui-v1.0.9-linux-amd64
chmod +x garage-webui chmod +x garage-webui
# Run the service # Run the service
@ -300,7 +300,7 @@ scrape_configs:
```bash ```bash
# Clone the project # Clone the project
git clone https://github.com/Adekabang/garage-webui.git git clone https://github.com/khairul169/garage-webui.git
cd garage-webui cd garage-webui
# Install frontend dependencies # Install frontend dependencies

View File

@ -2,7 +2,7 @@
set -e set -e
IMAGE_NAME="adekabang/garage-webui" IMAGE_NAME="khairul169/garage-webui"
PACKAGE_VERSION=$(cat package.json | grep \"version\" | cut -d'"' -f 4) PACKAGE_VERSION=$(cat package.json | grep \"version\" | cut -d'"' -f 4)
echo "Building version $PACKAGE_VERSION" echo "Building version $PACKAGE_VERSION"