Remove project name from envvars in docs

This commit is contained in:
Ben Firshman 2014-01-27 21:12:14 +00:00
commit b4cbcbefa6
2 changed files with 4 additions and 4 deletions

View file

@ -60,8 +60,8 @@ First thing we need to do is set up the database connection. Replace the `DATABA
'NAME': 'docker',
'USER': 'docker',
'PASSWORD': 'docker',
'HOST': os.environ.get('MYAPP_DB_1_PORT_5432_TCP_ADDR'),
'PORT': os.environ.get('MYAPP_DB_1_PORT_5432_TCP_PORT'),
'HOST': os.environ.get('DB_1_PORT_5432_TCP_ADDR'),
'PORT': os.environ.get('DB_1_PORT_5432_TCP_PORT'),
}
}