Add graph app
This commit is contained in:
parent
32ba5b9c21
commit
e65c78228d
@ -42,6 +42,7 @@ THIRD_PARTY_APPS = [
|
||||
|
||||
LOCAL_APPS = [
|
||||
"core.apps.CoreConfig",
|
||||
"graph.apps.GraphConfig",
|
||||
"market.apps.MarketConfig",
|
||||
"user.apps.UserConfig",
|
||||
]
|
||||
|
0
graph/__init__.py
Normal file
0
graph/__init__.py
Normal file
3
graph/admin.py
Normal file
3
graph/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
graph/apps.py
Normal file
6
graph/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class GraphConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "graph"
|
0
graph/migrations/__init__.py
Normal file
0
graph/migrations/__init__.py
Normal file
3
graph/models.py
Normal file
3
graph/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
graph/tests.py
Normal file
3
graph/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
graph/views.py
Normal file
3
graph/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in New Issue
Block a user