ngageoint / gamification-server

Server to track gamification elements (badges, points, tags) to work pages or apps
MIT License
243 stars 64 forks source link

error when executing "pave createdb" #14

Open zqian opened 9 years ago

zqian commented 9 years ago

I got this error:

OperationalError: FATAL: password authentication failed for user "gamification_manager"

Please help.

sreenathk17296 commented 8 years ago

You need to set up postgresql, and change the Database settings in settings.py.

DATABASES = {
    "default": {
        "ENGINE": "django.db.backends.postgresql_psycopg2",
        "NAME": "gamification",
        "USER": "game_manager",
        "PASSWORD": "django-gamification",
        "HOST": "",
        "PORT": "5432"
    }
}