Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Variable not found. Declare it as envvar or define a default value

Tags:

python

django

I am very new to Django and trying to configure python-decouple to use .env variables. I am getting DB_PASSWORD not found. Declare it as envvar or define a default value. when trying to run the server. The .env file is located in the root directory. Here is my code:

settings.py

import os
from decouple import config

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'db_development',
        'USER': "db_user",
        'PASSWORD': config('DB_PASSWORD'),
    }
}

my_app.env

DB_PASSWORD=my_password
like image 359
rebbailey Avatar asked Oct 14 '17 05:10

rebbailey


1 Answers

Change the name of the file: my_app.env must be .env.

From the source code:

class AutoConfig(object):
    """
    Autodetects the config file and type.
    """
    SUPPORTED = {
        'settings.ini': RepositoryIni,
        '.env': RepositoryEnv,
    }
like image 118
Juan Diego Godoy Robles Avatar answered Sep 20 '22 16:09

Juan Diego Godoy Robles