just app initialising

This commit is contained in:
Benni Bärmann 2020-12-23 11:42:57 +01:00
parent 3127f21947
commit 06cd9f63b5
7 changed files with 17 additions and 0 deletions

0
evapp/__init__.py Normal file
View File

3
evapp/admin.py Normal file
View File

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

5
evapp/apps.py Normal file
View File

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

View File

3
evapp/models.py Normal file
View File

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

3
evapp/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
evapp/views.py Normal file
View File

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