我在Django 1.4.3上有一个项目,并尝试在我的mac上设置。但提出错误
KeyError: 'DATABASE_URL'
settings.py:
DATABASES = {'default': dj_database_url.config()}
DATABASE_URL = os.environ['DATABASE_URL']
数据库的environ配置:
os.environ['DATABASE_URL'] = 'postgres://postgres:password@localhost:5432/viggo_backend'
答案 0 :(得分:0)
在终端我必须做
export DATABASE_URL=postgres://postgres:password@localhost:5432/viggo_backend