NotSupportedError in Django project using AWS App Runner

0

When I make some request to backend, the error below appears. Enter image description here Following the solutions of stackoverflow was insuccess. Please help me. I suspect I have to configure some thing in the service configuration of AWS App Runner. By the way, I am not even using SQlite3 in my project, I'm using Postgres instead.

1 Respuesta
1

It looks like Django still thinks you're trying to use the default sqlite3 DB. Can you verify the "DATABASES" variable in settings.py is configured with the postgres connection string?

DATABASES = {
    "default": {
        "ENGINE": "django.db.backends.postgresql",
        "NAME": "mydatabase",
        "USER": "mydatabaseuser",
        "PASSWORD": "mypassword",
        "HOST": "127.0.0.1",
        "PORT": "5432",
    }
}

You can also check against this tutorial on deploying Django to AppRunner, postgres is covered near the middle.

profile pictureAWS
respondido hace 4 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas