[Answer]-Django.db.utils.OperationalError: FATAL: database "Path" doesn't exist

1👍

You should pass the name of the database, not the filename. So if you created database named "amour" then setting will be:

DATABASES = {
    'default': {
        ...
        'NAME': 'amour',
        ...
    }
}

Leave a comment