diff --git a/backend/apps/__init__.py b/backend/apps/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/backend/apps/admin.py b/backend/apps/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/backend/apps/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/backend/apps/apps.py b/backend/apps/apps.py
new file mode 100644
index 0000000..03f7bcd
--- /dev/null
+++ b/backend/apps/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class AppsConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'apps'
diff --git a/backend/apps/files/__init__.py b/backend/apps/files/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/backend/apps/files/admin.py b/backend/apps/files/admin.py
new file mode 100644
index 0000000..c6fe108
--- /dev/null
+++ b/backend/apps/files/admin.py
@@ -0,0 +1,2 @@
+from django.contrib import admin
+
diff --git a/backend/apps/files/apps.py b/backend/apps/files/apps.py
new file mode 100644
index 0000000..cb05793
--- /dev/null
+++ b/backend/apps/files/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class FilesConfig(AppConfig):
+    default_auto_field = "django.db.models.BigAutoField"
+    name = "apps.files"
diff --git a/backend/apps/files/migrations/__init__.py b/backend/apps/files/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/backend/apps/files/models.py b/backend/apps/files/models.py
new file mode 100644
index 0000000..b096caa
--- /dev/null
+++ b/backend/apps/files/models.py
@@ -0,0 +1,4 @@
+from django.db import models
+
+# Create your models here.
+
diff --git a/backend/apps/files/tests.py b/backend/apps/files/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/backend/apps/files/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/backend/apps/files/views.py b/backend/apps/files/views.py
new file mode 100644
index 0000000..91ea44a
--- /dev/null
+++ b/backend/apps/files/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/backend/apps/migrations/__init__.py b/backend/apps/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/backend/apps/models.py b/backend/apps/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/backend/apps/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/backend/apps/tests.py b/backend/apps/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/backend/apps/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/backend/apps/views.py b/backend/apps/views.py
new file mode 100644
index 0000000..91ea44a
--- /dev/null
+++ b/backend/apps/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.