Tell me why, after setting the password to the database, does the django project still read data from it? Here is my sequence of actions:
sudo su su postgres psql ALTER USER mydb WITH PASSWORD 'aequieF7yuy0ohGh'; In the database settings in the project is:
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'mydb', 'USER': 'mydb', # 'PASSWORD': 'aequieF7yuy0ohGh' } }