Add graph app

This commit is contained in:
jhyns 2023-05-04 11:06:04 +09:00
parent 32ba5b9c21
commit e65c78228d
8 changed files with 19 additions and 0 deletions

View File

@ -42,6 +42,7 @@ THIRD_PARTY_APPS = [
LOCAL_APPS = [ LOCAL_APPS = [
"core.apps.CoreConfig", "core.apps.CoreConfig",
"graph.apps.GraphConfig",
"market.apps.MarketConfig", "market.apps.MarketConfig",
"user.apps.UserConfig", "user.apps.UserConfig",
] ]

0
graph/__init__.py Normal file
View File

3
graph/admin.py Normal file
View File

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

6
graph/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class GraphConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "graph"

View File

3
graph/models.py Normal file
View File

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

3
graph/tests.py Normal file
View File

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

3
graph/views.py Normal file
View File

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