Add core app

Add migrations folders to .gitignore
This commit is contained in:
Klaus-Uwe Mitterer 2020-03-24 12:59:43 +01:00
parent a22c19a8cc
commit 27c36d28a2
7 changed files with 19 additions and 1 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
expephalon/custom_settings.py
*.pyc
__pycache__/
__pycache__/
migrations/

0
core/__init__.py Normal file
View file

3
core/admin.py Normal file
View file

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

5
core/apps.py Normal file
View file

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

3
core/models.py Normal file
View file

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

3
core/tests.py Normal file
View file

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

3
core/views.py Normal file
View file

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