I have django + postgresql web site.
I want publish them to Azure web site.
How I can sync db, or create postgresql database in azure web site?
If I can do it, what I need write in settings file?
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'xxx',
'USER': 'xxx',
'PASSWORD': 'xxx',
'HOST': 'xxx',
#'PORT': 'xxx',
}
}