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',
...
}
}
Source:stackexchange.com