I'm trying to set up PostgresSQL for the first time on Django, running into this error when I try to do a syndb?
ImportError: Could not import settings 'testapp.settings' (Is it on sys.path?):
Also have this at the toop of my settings.py file, no idea if this is correct?
import dj_database_url
DATABASES = {'default': dj_database_url.config(default=os.environ.get('DATABASE_URL'))}