- Run
docker-compose up --build - Access at http://localhost:10000
If you prefer running outside Docker:
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activatepip install -r requirements.txtNote: If python-ldap fails to install due to missing system libraries (libldap2-dev, etc.), you can remove django-auth-ldap and python-ldap from requirements.txt. The app is configured to run without LDAP if these are missing.
You need a local Redis instance running on port 6379, or update CELERY_BROKER_URL in config/settings.py.
python manage.py migrate python manage.py createsuperuser python manage.py runserver 0.0.0.0:10000Access at http://localhost:10000