mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-10-14 14:59:32 +07:00
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:
parent
2ffdc69d47
commit
8eaee0be8c
6
.github/workflows/README.md
vendored
6
.github/workflows/README.md
vendored
@ -24,9 +24,9 @@ When a new tag is pushed, the workflow will:
|
||||
## Docker Images
|
||||
|
||||
The Docker images will be available at:
|
||||
- `ghcr.io/adekabang/garage-ui:latest`
|
||||
- `ghcr.io/adekabang/garage-ui:X.Y.Z` (version tag)
|
||||
- `ghcr.io/adekabang/garage-ui:X.Y` (major.minor tag)
|
||||
- `ghcr.io/khairul169/garage-webui:latest`
|
||||
- `ghcr.io/khairul169/garage-webui:X.Y.Z` (version tag)
|
||||
- `ghcr.io/khairul169/garage-webui:X.Y` (major.minor tag)
|
||||
|
||||
## Binaries
|
||||
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -8,7 +8,7 @@ on:
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
DOCKER_HUB_REGISTRY: adekabang/garage-webui
|
||||
DOCKER_HUB_REGISTRY: khairul169/garage-webui
|
||||
|
||||
jobs:
|
||||
build-and-push-image:
|
||||
|
1
LICENSE
1
LICENSE
@ -1,7 +1,6 @@
|
||||
MIT License
|
||||
|
||||
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
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Adekabang/garage-webui
|
||||
module khairul169/garage-webui
|
||||
|
||||
go 1.23.0
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/router"
|
||||
"Adekabang/garage-webui/ui"
|
||||
"Adekabang/garage-webui/utils"
|
||||
"fmt"
|
||||
"khairul169/garage-webui/router"
|
||||
"khairul169/garage-webui/ui"
|
||||
"khairul169/garage-webui/utils"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
|
@ -1,8 +1,8 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/utils"
|
||||
"errors"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/utils"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
|
@ -1,13 +1,13 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/schema"
|
||||
"Adekabang/garage-webui/utils"
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"khairul169/garage-webui/schema"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
@ -1,10 +1,10 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/schema"
|
||||
"Adekabang/garage-webui/utils"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"khairul169/garage-webui/schema"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/utils"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/utils"
|
||||
"fmt"
|
||||
"khairul169/garage-webui/utils"
|
||||
"net/http"
|
||||
"net/http/httputil"
|
||||
"net/url"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/middleware"
|
||||
"khairul169/garage-webui/middleware"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"Adekabang/garage-webui/schema"
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"khairul169/garage-webui/schema"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
|
@ -14,7 +14,7 @@ services:
|
||||
- 3903:3903
|
||||
|
||||
webui:
|
||||
image: ghcr.io/adekabang/garage-webui:latest
|
||||
image: ghcr.io/khairul169/garage-webui:latest
|
||||
container_name: garage-webui
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
|
@ -741,8 +741,8 @@ import (
|
||||
"github.com/aws/aws-sdk-go-v2/service/s3"
|
||||
"github.com/joho/godotenv"
|
||||
|
||||
"Adekabang/garage-webui/schema"
|
||||
"Adekabang/garage-webui/utils"
|
||||
"khairul169/garage-webui/schema"
|
||||
"khairul169/garage-webui/utils"
|
||||
)
|
||||
```
|
||||
|
||||
|
@ -137,7 +137,7 @@ services:
|
||||
- 3903:3903 # Admin API
|
||||
|
||||
webui:
|
||||
image: adekabang/garage-webui:latest
|
||||
image: khairul169/garage-webui:latest
|
||||
volumes:
|
||||
- ./garage.toml:/etc/garage.toml:ro
|
||||
ports:
|
||||
@ -154,14 +154,14 @@ docker run -p 3909:3909 \
|
||||
-v ./garage.toml:/etc/garage.toml:ro \
|
||||
-e API_BASE_URL="http://garage-host:3903" \
|
||||
-e API_ADMIN_KEY="your-admin-token" \
|
||||
adekabang/garage-webui:latest
|
||||
khairul169/garage-webui:latest
|
||||
```
|
||||
|
||||
### 🖥️ Binary Deployment
|
||||
|
||||
```bash
|
||||
# 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
|
||||
|
||||
# Run the service
|
||||
@ -300,7 +300,7 @@ scrape_configs:
|
||||
|
||||
```bash
|
||||
# Clone the project
|
||||
git clone https://github.com/Adekabang/garage-webui.git
|
||||
git clone https://github.com/khairul169/garage-webui.git
|
||||
cd garage-webui
|
||||
|
||||
# Install frontend dependencies
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
set -e
|
||||
|
||||
IMAGE_NAME="adekabang/garage-webui"
|
||||
IMAGE_NAME="khairul169/garage-webui"
|
||||
PACKAGE_VERSION=$(cat package.json | grep \"version\" | cut -d'"' -f 4)
|
||||
|
||||
echo "Building version $PACKAGE_VERSION"
|
||||
|
Loading…
x
Reference in New Issue
Block a user