diff --git a/com3014/com3014/settings.py b/com3014/com3014/settings.py
index cda31cc7cec78f4d06a9d3ce48550593be460e8c..5321f0b28c2e1f861cee4eb55459343e7b721671 100644
--- a/com3014/com3014/settings.py
+++ b/com3014/com3014/settings.py
@@ -20,8 +20,12 @@ BASE_DIR = Path(__file__).resolve().parent.parent
 # See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
 
 # SECURITY WARNING: keep the secret key used in production secret!
+
+SECRET_KEY = 'django-insecure-bvu!15eh*et-5y)j$b6ggrfhw*tw$q7e-y#1qe#avht3%54k^('
+
 SECRET_KEY = 'django-insecure-_iph_(8_-&i)+f7iv*b@h-70!28k_@%)d4ysu*=7aca=82)4ls'
 
+
 # SECURITY WARNING: don't run with debug turned on in production!
 DEBUG = True
 
diff --git a/com3014/contact/__init__.py b/com3014/contact/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/com3014/contact/admin.py b/com3014/contact/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/com3014/contact/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/com3014/contact/apps.py b/com3014/contact/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..002d6c20f37fbf43546458cab8fd746b8ae7a1a4
--- /dev/null
+++ b/com3014/contact/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class ContactConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'contact'
diff --git a/com3014/contact/migrations/__init__.py b/com3014/contact/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/com3014/contact/models.py b/com3014/contact/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/com3014/contact/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/com3014/contact/tests.py b/com3014/contact/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/com3014/contact/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/com3014/contact/views.py b/com3014/contact/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..91ea44a218fbd2f408430959283f0419c921093e
--- /dev/null
+++ b/com3014/contact/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.