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 Answer
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
answered 4 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions