init
This commit is contained in:
0
src/test_app/__init__.py
Normal file
0
src/test_app/__init__.py
Normal file
3
src/test_app/admin.py
Normal file
3
src/test_app/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin # noqa
|
||||
|
||||
# Register your models here.
|
6
src/test_app/apps.py
Normal file
6
src/test_app/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TestAppConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'test_app'
|
0
src/test_app/migrations/__init__.py
Normal file
0
src/test_app/migrations/__init__.py
Normal file
3
src/test_app/models.py
Normal file
3
src/test_app/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models # noqa
|
||||
|
||||
# Create your models here.
|
3
src/test_app/tests.py
Normal file
3
src/test_app/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase # noqa
|
||||
|
||||
# Create your tests here.
|
5
src/test_app/urls.py
Normal file
5
src/test_app/urls.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.urls import path # noqa
|
||||
|
||||
urlpatterns = [
|
||||
# ... other urls
|
||||
]
|
3
src/test_app/views.py
Normal file
3
src/test_app/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render # noqa
|
||||
|
||||
# Create your views here.
|
Reference in New Issue
Block a user