We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ad4237 commit 30f0ab4Copy full SHA for 30f0ab4
8 files changed
.gitignore
@@ -0,0 +1,2 @@
1
+*.py[ocd]
2
+**/.env
backendapi/__init__.py
backendapi/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
3
+# Register your models here.
backendapi/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
4
+class BackendapiConfig(AppConfig):
5
+ default_auto_field = "django.db.models.BigAutoField"
6
+ name = "backendapi"
backendapi/migrations/__init__.py
backendapi/models.py
+from django.db import models
+# Create your models here.
backendapi/tests.py
+from django.test import TestCase
+# Create your tests here.
backendapi/views.py
+from django.shortcuts import render
+# Create your views here.
0 commit comments