feat(drupal): ajoute un embryon d'app drupal

This commit is contained in:
François Poulain 2020-08-01 11:12:06 +02:00
parent 1e8282d983
commit f1e0ecf8f1
3 changed files with 6 additions and 1 deletions

View File

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class DrupalConfig(AppConfig):
name = 'drupal'

View File

@ -86,7 +86,7 @@ DJANGO_APPS = [
THIRD_PARTY_APPS = []
# Project applications
LOCAL_APPS = ['drupal2spip_lal.base']
LOCAL_APPS = ['drupal2spip_lal.base', 'drupal2spip_lal.drupal']
# https://docs.djangoproject.com/en/stable/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS