mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 08:56:52 +00:00
feat: initialize letters app and register it in settings
This commit is contained in:
@@ -47,6 +47,7 @@ INSTALLED_APPS = [
|
||||
"rest_framework", # for API
|
||||
"corsheaders", # for API and Frontend connect
|
||||
"users", # custom user app
|
||||
"letters", # letters app
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
# Register your models here.
|
||||
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class LettersConfig(AppConfig):
|
||||
name = "letters"
|
||||
@@ -0,0 +1 @@
|
||||
# Create your models here.
|
||||
@@ -0,0 +1 @@
|
||||
# Create your tests here.
|
||||
@@ -0,0 +1 @@
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user