diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-07-31 10:46:50 +0200 |
---|---|---|
committer | Étienne Loks <etienne@peacefrogs.net> | 2019-07-31 10:46:50 +0200 |
commit | d2e3ce3fe1bca021190c8257367e8a444596724f (patch) | |
tree | 73d50da3dddea117777ecfeaad6926db0920b2c9 /commonnet | |
parent | 345a41be0318da980422ee74a67c363008d4de8d (diff) | |
download | Comm-on-net-d2e3ce3fe1bca021190c8257367e8a444596724f.tar.bz2 Comm-on-net-d2e3ce3fe1bca021190c8257367e8a444596724f.zip |
Models refactoring
Diffstat (limited to 'commonnet')
-rw-r--r-- | commonnet/settings.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/commonnet/settings.py b/commonnet/settings.py index 4ca0fbf..26c5c66 100644 --- a/commonnet/settings.py +++ b/commonnet/settings.py @@ -1,12 +1,7 @@ import os -# Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ - # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '!lh+r$hzd(_-aj8a2&@)34bat=w&=!k+9w%$_+&^gjhf#n6z42' @@ -19,6 +14,7 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ + 'commorganization.apps.CommOrganizationConfig', 'commcrawler.apps.CommCrawlerConfig', 'ajax_select', 'django.contrib.admin', |