add .gitignore file
This commit is contained in:
parent
97dd1c1055
commit
c9760f08e6
0
news/posts/__init__.py
Normal file
0
news/posts/__init__.py
Normal file
3
news/posts/admin.py
Normal file
3
news/posts/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
5
news/posts/apps.py
Normal file
5
news/posts/apps.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class PostsConfig(AppConfig):
|
||||||
|
name = 'posts'
|
0
news/posts/migrations/__init__.py
Normal file
0
news/posts/migrations/__init__.py
Normal file
3
news/posts/models.py
Normal file
3
news/posts/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
news/posts/tests.py
Normal file
3
news/posts/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
news/posts/views.py
Normal file
3
news/posts/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
x
Reference in New Issue
Block a user