Skip to content

Commit 08f9676

Browse files
Merge pull request #1 from hasirciogluhq/hasirciogluhq-patch-1
2 parents 0d26424 + d247917 commit 08f9676

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
.github/workflows/* @hasirciogli
2-
.github/* @hasirciogli
1+
.github/workflows/* @hasirciogluhq
2+
.github/* @hasirciogluhq

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
41-
username: hasirciogli
41+
username: hasirciogluhq
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343

4444
- name: Extract metadata for Docker
4545
id: meta
4646
uses: docker/metadata-action@v5
4747
with:
48-
images: ghcr.io/hasirciogli/xdatabase-proxy
48+
images: ghcr.io/hasirciogluhq/xdatabase-proxy
4949
tags: |
5050
type=ref,event=branch
5151
type=ref,event=pr
@@ -89,14 +89,14 @@ jobs:
8989
uses: docker/login-action@v3
9090
with:
9191
registry: ghcr.io
92-
username: hasirciogli
92+
username: hasirciogluhq
9393
password: ${{ secrets.GITHUB_TOKEN }}
9494

9595
- name: Extract metadata for Docker
9696
id: meta
9797
uses: docker/metadata-action@v5
9898
with:
99-
images: ghcr.io/hasirciogli/xdatabase-proxy-development
99+
images: ghcr.io/hasirciogluhq/xdatabase-proxy-development
100100
tags: |
101101
type=ref,event=branch
102102
type=ref,event=pr

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ For organizations with annual revenue exceeding USD 100,000, the following tier-
6363
- 30-day written notice required for voluntary termination
6464

6565
For commercial licensing inquiries or questions:
66-
Contact: github.com/hasirciogli/xdatabase-proxy/issues
66+
Contact: github.com/hasirciogluhq/xdatabase-proxy/issues

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Currently, the following databases are supported:
3737

3838
```bash
3939
# Clone the project
40-
git clone https://github.com/hasirciogli/xdatabase-proxy.git
40+
git clone https://github.com/hasirciogluhq/xdatabase-proxy.git
4141
cd xdatabase-proxy
4242

4343
# Install dependencies
@@ -222,7 +222,7 @@ kubectl apply -f kubernetes/examples/production/deploy.yaml
222222
Or, you can use the raw GitHub URL directly:
223223

224224
```bash
225-
kubectl apply -f https://raw.githubusercontent.com/hasirciogli/xdatabase-proxy/main/kubernetes/examples/production/deploy.yaml
225+
kubectl apply -f https://raw.githubusercontent.com/hasirciogluhq/xdatabase-proxy/main/kubernetes/examples/production/deploy.yaml
226226
```
227227

228228
## How it works ?

apps/proxy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"sync/atomic"
1313
"syscall"
1414

15-
"github.com/hasirciogli/xdatabase-proxy/pkg/postgresql"
15+
"github.com/hasirciogluhq/xdatabase-proxy/pkg/postgresql"
1616
)
1717

1818
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/hasirciogli/xdatabase-proxy
1+
module github.com/hasirciogluhq/xdatabase-proxy
22

33
go 1.23.4
44

kubernetes/examples/production/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
effect: NoSchedule
7373
containers:
7474
- name: xdatabase-proxy
75-
image: ghcr.io/hasirciogli/xdatabase-proxy:latest
75+
image: ghcr.io/hasirciogluhq/xdatabase-proxy:latest
7676
imagePullPolicy: Always
7777
ports:
7878
- containerPort: 5432

pkg/postgresql/proxy_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"sync"
2222
"time"
2323

24-
"github.com/hasirciogli/xdatabase-proxy/pkg/kubernetes"
24+
"github.com/hasirciogluhq/xdatabase-proxy/pkg/kubernetes"
2525
)
2626

2727
const (

scripts/create-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ echo "1. Build and push Docker image"
6060
echo "2. Create GitHub release with changelog"
6161
echo ""
6262
echo "You can monitor the progress at:"
63-
echo "https://github.com/hasirciogli/xdatabase-proxy/actions"
63+
echo "https://github.com/hasirciogluhq/xdatabase-proxy/actions"

scripts/setup-test-deployment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ./build/xdatabase-proxy apps/p
1515

1616
echo "Building Docker image..."
1717
eval $(minikube docker-env -p local-test)
18-
docker build -f Dockerfile.test -t ghcr.io/hasirciogli/xdatabase-proxy-local-test:latest .
18+
docker build -f Dockerfile.test -t ghcr.io/hasirciogluhq/xdatabase-proxy-local-test:latest .
1919

2020
echo "Creating namespaces if not exists..."
2121
if minikube kubectl -p local-test -- get namespace test >/dev/null 2>&1; then

0 commit comments

Comments
 (0)