# apt-get install postgresql
ACESSAR O POSTGRESQL E CRIAR UMA SENHA
# sudo su - postgres
# psql -d postgres -U postgres
# alter user postgres with password 'senha';
# \q
FAZER A CONEXÃO ENTRE O POSTGRES DE O PYTHON - PSYCOPG2
# apt-get install libpq-dev
# apt-get install pyscopg2
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'mydb',
'USER': 'myuser',
'PASSWORD': 'mypassword',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
Nenhum comentário:
Postar um comentário