【Day 2 完了報告】
完了したタスク
Day 2: Djangoセットアップ
成果物
requirements.txt (packages added)
settings.py (configured)
apps/fields, apps/plans, apps/reports (directories created)
レビュー結果
✅ 良い点:
必要なライブラリが適切に追加されました(pandas, PostGIS等)。
settings.py の設定変更(INSTALLED_APPS, DATABASES, REST_FRAMEWORK)が正しく行われています。
アプリケーション構成も指示通りです。
次のステップ
Day 3: データモデル実装(Fields, Plansアプリのモデル作成)
This commit is contained in:
0
backend/apps/__init__.py
Normal file
0
backend/apps/__init__.py
Normal file
0
backend/apps/fields/__init__.py
Normal file
0
backend/apps/fields/__init__.py
Normal file
3
backend/apps/fields/admin.py
Normal file
3
backend/apps/fields/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
backend/apps/fields/apps.py
Normal file
6
backend/apps/fields/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class FieldsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.fields'
|
||||
0
backend/apps/fields/migrations/__init__.py
Normal file
0
backend/apps/fields/migrations/__init__.py
Normal file
3
backend/apps/fields/models.py
Normal file
3
backend/apps/fields/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
backend/apps/fields/tests.py
Normal file
3
backend/apps/fields/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
backend/apps/fields/views.py
Normal file
3
backend/apps/fields/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
0
backend/apps/plans/__init__.py
Normal file
0
backend/apps/plans/__init__.py
Normal file
3
backend/apps/plans/admin.py
Normal file
3
backend/apps/plans/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
backend/apps/plans/apps.py
Normal file
6
backend/apps/plans/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PlansConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.plans'
|
||||
0
backend/apps/plans/migrations/__init__.py
Normal file
0
backend/apps/plans/migrations/__init__.py
Normal file
3
backend/apps/plans/models.py
Normal file
3
backend/apps/plans/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
backend/apps/plans/tests.py
Normal file
3
backend/apps/plans/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
backend/apps/plans/views.py
Normal file
3
backend/apps/plans/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
0
backend/apps/reports/__init__.py
Normal file
0
backend/apps/reports/__init__.py
Normal file
3
backend/apps/reports/admin.py
Normal file
3
backend/apps/reports/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
backend/apps/reports/apps.py
Normal file
6
backend/apps/reports/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ReportsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.reports'
|
||||
0
backend/apps/reports/migrations/__init__.py
Normal file
0
backend/apps/reports/migrations/__init__.py
Normal file
3
backend/apps/reports/models.py
Normal file
3
backend/apps/reports/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
backend/apps/reports/tests.py
Normal file
3
backend/apps/reports/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
backend/apps/reports/views.py
Normal file
3
backend/apps/reports/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user