Skip to content

Commit

Permalink
create core app (using manage.py startapp)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmurilo75 committed Mar 4, 2024
1 parent c717726 commit 3829998
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 0 deletions.
Empty file.
1 change: 1 addition & 0 deletions negligent_octopus/core/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Register your models here.
6 changes: 6 additions & 0 deletions negligent_octopus/core/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "core"
Empty file.
Empty file.
1 change: 1 addition & 0 deletions negligent_octopus/core/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your tests here.
1 change: 1 addition & 0 deletions negligent_octopus/core/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Create your views here.

0 comments on commit 3829998

Please sign in to comment.