diff --git a/Makefile b/Makefile index 584a61c..8e273a8 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,6 @@ ipython: test: @.venv/bin/pytest -vs -s - lint: @.venv/bin/pflake8 app kamila_project diff --git a/kamila_project/settings.py b/kamila_project/settings.py index 450087c..37d174e 100644 --- a/kamila_project/settings.py +++ b/kamila_project/settings.py @@ -58,6 +58,7 @@ TEMPLATES = [ { + "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [], "APP_DIRS": True, @@ -73,6 +74,7 @@ ] + WSGI_APPLICATION = "kamila_project.wsgi.application" # Database diff --git a/pyproject.toml b/pyproject.toml index e61d6b2..d6d6d54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,5 @@ [project] + name = "terapeuta_kamila_rodrigues" version = "0.1.0" description = " Official website of Kamila Rodrigues, a professional therapist." @@ -8,6 +9,7 @@ authors = [ { name = "Viana Labs", email = "contacto@vianalabs.pt" } ] dependencies = [ + "django", ] @@ -21,7 +23,6 @@ test = [ "isort", "pytest", "pytest-django", - "livereload", ] [tool.flake8] diff --git a/requirements.dev.txt b/requirements.dev.txt index d46fa00..4dae840 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -7,8 +7,8 @@ pytest-watch # auto reload -django-livereload -django-livereload-server +# django-livereload +# django-livereload-server # Code Quality