From f5f37f6572946f0e260d3a3c4e523b2bb1877157 Mon Sep 17 00:00:00 2001 From: yusyus Date: Wed, 14 Jan 2026 23:17:49 +0300 Subject: [PATCH] fix: Update render.yaml to use git submodule for configs_repo Changed from manual git clone to proper submodule initialization. This ensures configs_repo is properly synced with .gitmodules. --- render.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render.yaml b/render.yaml index 2c7b751..9e3de81 100644 --- a/render.yaml +++ b/render.yaml @@ -5,8 +5,8 @@ services: runtime: python plan: free buildCommand: | - pip install -r api/requirements.txt && - git clone https://github.com/yusufkaraaslan/skill-seekers-configs.git api/configs_repo + git submodule update --init --recursive && + pip install -r api/requirements.txt startCommand: cd api && uvicorn main:app --host 0.0.0.0 --port $PORT envVars: - key: PYTHON_VERSION