Miro_Backend_Dev_Task Install python 3.9+ and pip2. python3 -m venv venv to create a virtual environment source venv/bin/activate to activate the virtual environment pip install -r requirements.txt to install all the dependencies Install Docker. docker compose up in a new terminal to start the database and redis servers in local Setting up Backend Application Change the directory by cd notesapp/ python manage.py makemigrations to create the migrations python manage.py migrate to create the database schema. python manage.py runserver to start the server python manage.py createsuperuser to create a super admin (optional)