This commit is contained in:
mr 2025-04-01 10:13:55 +02:00
parent 82aed0fdb6
commit 7cdb02b677
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
./k8s/deployed_config

View File

@ -4,7 +4,7 @@ branch=${2:-main}
cd ../..
if [ ! -d "oc-k8s" ];
if [ ! -d "oc-k8s" ]; then
echo "Cloning repository: $repo_name"
git clone "https://cloud.o-forge.io/core/oc-k8s.git"
if [ $? -ne 0 ]; then

View File

@ -32,7 +32,7 @@ for i in "${REPOS[@]}"
do
echo "Building $i"
cd ./$i
make dev &
make dev HOST="${2:-http://localhost:8000}" &
cd ..
done