Created core app for homepage and generic templates.
parent
6aec5a5659
commit
d665992b22
|
|
@ -39,6 +39,7 @@ INSTALLED_APPS = [
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
|
'core.apps.CoreConfig',
|
||||||
'articles.apps.ArticlesConfig',
|
'articles.apps.ArticlesConfig',
|
||||||
'markdownx',
|
'markdownx',
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
# Register your models here.
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class CoreConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'core'
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
# Create your models here.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
# Create your tests here.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
# Create your views here.
|
||||||
Loading…
Reference in New Issue