From af67cfd07756ece2d33d8bb8121e92de55afb781 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 14 Aug 2025 23:03:37 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Fix=20Railway=20deployment=20-?= =?UTF-8?q?=20remove=20obsolete=20populate=5Fagents=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Railway configuration updated for modern file-based agent system: - Removed populate_agents from startup command (no longer needed) - File-based agents load automatically from JSON configs - Maintains migration, admin setup, and static file collection - Ready for Railway deployment with PostgreSQL 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- railway.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.json b/railway.json index 0b8b20a..d686186 100644 --- a/railway.json +++ b/railway.json @@ -4,7 +4,7 @@ "builder": "NIXPACKS" }, "deploy": { - "startCommand": "python manage.py migrate; python manage.py populate_agents; python manage.py reset_admin; python manage.py verify_email admin@quantumtaskai.com --force || true; python manage.py collectstatic --noinput && gunicorn netcop_hub.wsgi:application --bind 0.0.0.0:$PORT --workers 1 --timeout 60", + "startCommand": "python manage.py migrate; python manage.py reset_admin; python manage.py verify_email admin@quantumtaskai.com --force || true; python manage.py collectstatic --noinput && gunicorn netcop_hub.wsgi:application --bind 0.0.0.0:$PORT --workers 1 --timeout 60", "restartPolicyType": "ON_FAILURE", "restartPolicyMaxRetries": 3 },