feat(spip): ajoute un embryon d'app spip
This commit is contained in:
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
drupal2spip_lal/spip/__init__.py
Normal file
0
drupal2spip_lal/spip/__init__.py
Normal file
5
drupal2spip_lal/spip/apps.py
Normal file
5
drupal2spip_lal/spip/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class SpipConfig(AppConfig):
|
||||
name = 'spip'
|
Loading…
Reference in New Issue
Block a user