feat(spip): ajoute un embryon d'app spip
parent
0e08c4446e
commit
494135a4d7
|
@ -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
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class SpipConfig(AppConfig):
|
||||
name = 'spip'
|
Loading…
Reference in New Issue