add .gitignore file

This commit is contained in:
Kevin Holzschuh 2019-10-29 14:08:43 +01:00
parent 97dd1c1055
commit c9760f08e6
7 changed files with 17 additions and 0 deletions

0
news/posts/__init__.py Normal file
View File

3
news/posts/admin.py Normal file
View File

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

5
news/posts/apps.py Normal file
View File

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

View File

3
news/posts/models.py Normal file
View File

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

3
news/posts/tests.py Normal file
View File

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

3
news/posts/views.py Normal file
View File

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