diff --git a/docs/infrastructure/README.md b/docs/infrastructure/README.md index 554f7d93..80503531 100644 --- a/docs/infrastructure/README.md +++ b/docs/infrastructure/README.md @@ -90,7 +90,7 @@ sudo bash <(curl -sSL https://raw.githubusercontent.com/oib/aitbc/main/setup.sh) ### Manual Setup ```bash # Clone and setup manually -sudo git clone https://gitea.bubuit.net/oib/aitbc.git /opt/aitbc +sudo git clone https://github.com/aitbc/aitbc.git /opt/aitbc cd /opt/aitbc sudo ./setup.sh ``` diff --git a/setup.sh b/setup.sh index c9f644ef..cdb5ce64 100755 --- a/setup.sh +++ b/setup.sh @@ -68,9 +68,9 @@ clone_repo() { # Clone repository cd /opt - git clone https://gitea.bubuit.net/oib/aitbc.git aitbc || { - # Try alternative URL - git clone http://10.0.3.107:3000/oib/aitbc.git aitbc || error "Failed to clone repository" + git clone https://github.com/aitbc/aitbc.git aitbc || { + # Try alternative GitHub URL + git clone git@github.com:aitbc/aitbc.git aitbc || error "Failed to clone repository" } cd /opt/aitbc