initialize the env if not already

poetry init

to install you dependencies

poetry install

activate the venv

poetry shell

initialize your django project

poetry run django-admin startproject syncify_task .

add your core app

poetry run django-admin startapp core

add your db config in settings

make initial migrations

poetry run python manage.py makemigrations

migrate to db

poetry run python manage.py migrate

create a superuser

poetry run python manage.py createsuperuser

run the server

poetry run python manage.py runserver