Skip to content

Commit

Permalink
Added embedathon boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhprabhakaran3 committed Dec 3, 2023
1 parent ba34c2b commit eb5cf57
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions corpus/corpus/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"pages.apps.PagesConfig",
"config.apps.ConfigConfig",
"accounts.apps.AccountsConfig",
"embedathon.apps.EmbedathonConfig",
]

MIDDLEWARE = [
Expand Down
Empty file added corpus/embedathon/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions corpus/embedathon/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# from django.contrib import admin
#
# # Register your models here.
6 changes: 6 additions & 0 deletions corpus/embedathon/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class EmbedathonConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "embedathon"
Empty file.
3 changes: 3 additions & 0 deletions corpus/embedathon/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# from django.db import models
#
# # Create your models here.
3 changes: 3 additions & 0 deletions corpus/embedathon/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# from django.test import TestCase
#
# # Create your tests here.
3 changes: 3 additions & 0 deletions corpus/embedathon/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# from django.shortcuts import render
#
# # Create your views here.

0 comments on commit eb5cf57

Please sign in to comment.