Init app 'crawl'

This commit is contained in:
Théophile Bastian 2018-02-20 08:51:16 +01:00
parent 924657abdb
commit bef1fca5b9
7 changed files with 15 additions and 0 deletions

0
crawl/__init__.py Normal file
View File

3
crawl/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
crawl/apps.py Normal file
View File

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

View File

3
crawl/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
crawl/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

View File

@ -26,6 +26,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'profiles',
'crawl',
]
MIDDLEWARE = [