After installing PostgreSQL and PgAdmin open terminal and type
sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
It requires you to create while installing the app.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'mydb',
'USER': 'myuser',
'PASSWORD': 'userpassword',
'HOST': 'localhost',
'PORT': 5432,
}
}pip install psycopg2-binary
Report in BI Server!


