Konflikt resen

This commit is contained in:
2025-02-21 14:58:02 +01:00
parent a8227b18b6
commit ff6b525e18
10 changed files with 107 additions and 24 deletions

12
start_services.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
echo "Starting Django server..."
python3 manage.py runserver &
echo "Starting Celery worker..."
celery -A backend worker --loglevel=info &
echo "Starting Redis server on port 6380..."
redis-server --port 6380 &
wait