conda create -n <env_name> python=3.12.3
conda activate <env_name>
poetry install
touch .env
cp .env.example .env
poetry run python manage.py migrate
poetry run python manage.py runserver
You can now access the server at http://localhost:8000/ and API documentation at http://localhost:8000/api/docs/