Created
April 3, 2020 05:08
-
-
Save anaschwendler/356d2886992bd29890646c35fab02107 to your computer and use it in GitHub Desktop.
tests/settings.py
This file contains hidden or 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
import os | |
BASE_DIR = os.path.dirname(os.path.abspath(__file__)) | |
INSTALLED_APPS = ( | |
'django.contrib.admin', | |
'django.contrib.auth', | |
'django.contrib.contenttypes', | |
'django.contrib.sessions', | |
'django.contrib.sites', | |
'public_admin', | |
'tests' | |
) | |
SECRET_KEY = 'foobar' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment