diff --git a/recipes/__init__.py b/recipes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/recipes/admin.py b/recipes/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/recipes/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/recipes/apps.py b/recipes/apps.py new file mode 100644 index 0000000..1d53980 --- /dev/null +++ b/recipes/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class RecipesConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'recipes' diff --git a/recipes/migrations/__init__.py b/recipes/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/recipes/models.py b/recipes/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/recipes/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/recipes/tests.py b/recipes/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/recipes/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/recipes/views.py b/recipes/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/recipes/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/stadlbauer/settings.py b/stadlbauer/settings.py index c2a8679..039af39 100644 --- a/stadlbauer/settings.py +++ b/stadlbauer/settings.py @@ -32,6 +32,7 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ + 'recipes.apps.RecipesConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes',