From 00aa87be52371648af62e2826e3a51b6762ce15c Mon Sep 17 00:00:00 2001 From: ngovinh2k2 Date: Wed, 28 Jan 2026 11:22:18 +0700 Subject: [PATCH] fix: hardcode org slug to spacedf --- docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 38c27b5..4e35a03 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -3,7 +3,7 @@ set -e echo "Organization Service Starting..." echo "ORG_NAME: ${ORG_NAME:-not set}" -echo "ORG_SLUG: ${ORG_SLUG:-not set}" +echo "ORG_SLUG: spacedf" echo "OWNER_EMAIL: ${OWNER_EMAIL:-not set}" echo "Waiting for RabbitMQ AMQP on rabbitmq:5672..." @@ -30,7 +30,7 @@ sleep 5 echo "Running organization initialization..." python manage.py init_organization \ --org-name="${ORG_NAME}" \ - --org-slug="${ORG_SLUG}" \ + --org-slug="spacedf" \ --owner-email="${OWNER_EMAIL}" \ --owner-password="${OWNER_PASSWORD}"