#!/bin/sh

cd source

export DJANGO_SUPERUSER_PASSWORD=dev
#export CAVALIBA_AUTH_MODE=forced
export CAVALIBA_CELERY_BROKER_URL="redis://127.0.0.1:6379"
export CAVALIBA_CELERY_RESULT_BACKEND="redis://127.0.0.1:6379"
export CAVALIBA_FILES="./files/"
#export CAVALIBA_TASK_CELERY=sync

# BLOCK: no cli param => help
if [ -z "$1" ]; then
    echo "./start_dev.sh      :  this help"
    echo "./start_dev.sh app  :  start local app in dev mode"
    echo "./start_dev.sh task :  start local celery in dev mode ; running local redis needed"
    exit
fi

# BLOCK: task  => run
if [ "$1" = "task" ]; then
    uv run celery --workdir ./ -A core worker -B -s /tmp/celery --loglevel=info --concurrency 1
    exit
fi


# BLOCK: app
if [ "$1" = "app" ]; then

    # Collect static files
    echo "system check"
    uv run  manage.py check
    echo

    # not needed in DEV mode
    # echo "Collect static files"
    # uv run manage.py collectstatic --clear --noinput
    # echo


    echo "Apply database migrations"
    uv run manage.py migrate
    echo

    echo "Create cache tables"
    uv run manage.py createcachetable
    echo

    echo "Compile messages (translations)"
    uv run manage.py compilemessages -v 0
    # verbose 0 is silent
    echo

    # not needed in DEV mode with auth forced
    echo "Create admin superuser if absent"
    uv run manage.py createsuperuser --no-input --username admin --email dev@dev.nodev
    echo

    uv run manage.py cavaliba start
    echo


    echo "Starting local DEV server"
    uv run python manage.py runserver 127.0.0.1:8000
    #gunicorn core.wsgi:application --bind 0.0.0.0:8000 --log-level info --workers 4 --max-requests 500 --access-logfile '-' --error-logfile '-' --graceful-timeout 2
    # uv run gunicorn core.wsgi:application --bind 0.0.0.0:8000 

fi