Browse Source

add .gitignore file

master
Kevin Holzschuh 4 years ago
parent
commit
c9760f08e6

+ 0
- 0
news/posts/__init__.py View File


+ 3
- 0
news/posts/admin.py View File

@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.

+ 5
- 0
news/posts/apps.py View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig


class PostsConfig(AppConfig):
name = 'posts'

+ 0
- 0
news/posts/migrations/__init__.py View File


+ 3
- 0
news/posts/models.py View File

@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.

+ 3
- 0
news/posts/tests.py View File

@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.

+ 3
- 0
news/posts/views.py View File

@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

Loading…
Cancel
Save