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

This commit is contained in:
François Poulain 2020-08-01 14:25:56 +02:00
parent 0e08c4446e
commit 494135a4d7
3 changed files with 10 additions and 1 deletions

View File

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

View File

View File

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