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
|
## 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
|
||||||
|
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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:
|
||||||
|
1
LICENSE
1
LICENSE
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
module Adekabang/garage-webui
|
module khairul169/garage-webui
|
||||||
|
|
||||||
go 1.23.0
|
go 1.23.0
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package middleware
|
package middleware
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"Adekabang/garage-webui/utils"
|
|
||||||
"errors"
|
"errors"
|
||||||
|
"khairul169/garage-webui/utils"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package router
|
package router
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"Adekabang/garage-webui/utils"
|
"khairul169/garage-webui/utils"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package router
|
package router
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"Adekabang/garage-webui/middleware"
|
"khairul169/garage-webui/middleware"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -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:
|
||||||
|
@ -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"
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user