Last active
August 29, 2015 14:00
-
-
Save wfalkwallace/11087826 to your computer and use it in GitHub Desktop.
vagrant error - linger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant@precise32:/vagrant$ python app.py | |
Traceback (most recent call last): | |
File "app.py", line 29, in <module> | |
app.config['SQLALCHEMY_DATABASE_URI'] = os.environ['DATABASE_URL'] | |
File "/usr/lib/python2.7/UserDict.py", line 23, in __getitem__ | |
raise KeyError(key) | |
KeyError: 'DATABASE_URL' | |
vagrant@precise32:/vagrant$ |
yep - just had to set "localhost = True". good call on the heroku remnant.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
database_url must not be environ var. probably from heroku settings. not sure if I have an old config with the database url but should just be the regular linger url....
I can try and find if you don't have it?