configure the database settings in dcrm/settings.py
- Create a virtual environment using
python3 -m venv venv
- Activate the virtual environment using
source venv/bin/activate
- Install the required dependencies using
uv sync
- Create a superuser using
python manage.py createsuperuser
. - migrate the database using
python manage.py makemigrations
- migrate the database using
python manage.py migrate
. - Run the development server using
python manage.py runserver