diff --git a/Profile/Profile/__init__.py b/Profile/Profile/__init__.py
index 022d2a7fa1de9b5c48f8834aad4022c54844adc6..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/Profile/Profile/__init__.py
+++ b/Profile/Profile/__init__.py
@@ -1 +0,0 @@
-Boo
diff --git a/Profile/Profile/__pycache__/__init__.cpython-310.pyc b/Profile/Profile/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..19c2272552a64a3afa26ce1c4bfc951acadaaf8b
Binary files /dev/null and b/Profile/Profile/__pycache__/__init__.cpython-310.pyc differ
diff --git a/Profile/Profile/__pycache__/settings.cpython-310.pyc b/Profile/Profile/__pycache__/settings.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bf21e420abe2a691ab5f0143c5c57a56f1f7ee24
Binary files /dev/null and b/Profile/Profile/__pycache__/settings.cpython-310.pyc differ
diff --git a/meganTest/Test1/Test1/urls.py b/Profile/Profile/__pycache__/urls.cpython-310.pyc
similarity index 58%
rename from meganTest/Test1/Test1/urls.py
rename to Profile/Profile/__pycache__/urls.cpython-310.pyc
index a073c9ea8420de4e98440a90df8e8239cbc73587..879d1f324cdfa6df1eae2b1ab313cd7adeca8a8b 100644
Binary files a/meganTest/Test1/Test1/urls.py and b/Profile/Profile/__pycache__/urls.cpython-310.pyc differ
diff --git a/Profile/Profile/__pycache__/wsgi.cpython-310.pyc b/Profile/Profile/__pycache__/wsgi.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bfd45dad4feb7e809f5a91882d5fb952dd0ecc72
Binary files /dev/null and b/Profile/Profile/__pycache__/wsgi.cpython-310.pyc differ
diff --git a/meganTest/Test1/Test1/__init__.py b/Profile/db.sqlite3
similarity index 100%
rename from meganTest/Test1/Test1/__init__.py
rename to Profile/db.sqlite3
diff --git a/meganTest/Test1/Test1/asgi.py b/meganTest/Test1/Test1/asgi.py
deleted file mode 100644
index 40fc6f78dcce78e4c921c87a227adc6e89b7ad0e..0000000000000000000000000000000000000000
--- a/meganTest/Test1/Test1/asgi.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""
-ASGI config for Test1 project.
-
-It exposes the ASGI callable as a module-level variable named ``application``.
-
-For more information on this file, see
-https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/
-"""
-
-import os
-
-from django.core.asgi import get_asgi_application
-
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Test1.settings')
-
-application = get_asgi_application()
diff --git a/meganTest/Test1/Test1/settings.py b/meganTest/Test1/Test1/settings.py
deleted file mode 100644
index 0fb4e24bc713819d0307feda766d1f1b5f4e6abb..0000000000000000000000000000000000000000
--- a/meganTest/Test1/Test1/settings.py
+++ /dev/null
@@ -1,123 +0,0 @@
-"""
-Django settings for Test1 project.
-
-Generated by 'django-admin startproject' using Django 5.0.2.
-
-For more information on this file, see
-https://docs.djangoproject.com/en/5.0/topics/settings/
-
-For the full list of settings and their values, see
-https://docs.djangoproject.com/en/5.0/ref/settings/
-"""
-
-from pathlib import Path
-
-# Build paths inside the project like this: BASE_DIR / 'subdir'.
-BASE_DIR = Path(__file__).resolve().parent.parent
-
-
-# Quick-start development settings - unsuitable for production
-# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/
-
-# SECURITY WARNING: keep the secret key used in production secret!
-SECRET_KEY = 'django-insecure-_oq)#(5d4221bt6u&s)azqwb^k_a0wst31i2f5)gg-v-v@+i2s'
-
-# SECURITY WARNING: don't run with debug turned on in production!
-DEBUG = True
-
-ALLOWED_HOSTS = []
-
-
-# Application definition
-
-INSTALLED_APPS = [
-    'django.contrib.admin',
-    'django.contrib.auth',
-    'django.contrib.contenttypes',
-    'django.contrib.sessions',
-    'django.contrib.messages',
-    'django.contrib.staticfiles',
-]
-
-MIDDLEWARE = [
-    'django.middleware.security.SecurityMiddleware',
-    'django.contrib.sessions.middleware.SessionMiddleware',
-    'django.middleware.common.CommonMiddleware',
-    'django.middleware.csrf.CsrfViewMiddleware',
-    'django.contrib.auth.middleware.AuthenticationMiddleware',
-    'django.contrib.messages.middleware.MessageMiddleware',
-    'django.middleware.clickjacking.XFrameOptionsMiddleware',
-]
-
-ROOT_URLCONF = 'Test1.urls'
-
-TEMPLATES = [
-    {
-        'BACKEND': 'django.template.backends.django.DjangoTemplates',
-        'DIRS': [],
-        'APP_DIRS': True,
-        'OPTIONS': {
-            'context_processors': [
-                'django.template.context_processors.debug',
-                'django.template.context_processors.request',
-                'django.contrib.auth.context_processors.auth',
-                'django.contrib.messages.context_processors.messages',
-            ],
-        },
-    },
-]
-
-WSGI_APPLICATION = 'Test1.wsgi.application'
-
-
-# Database
-# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
-
-DATABASES = {
-    'default': {
-        'ENGINE': 'django.db.backends.sqlite3',
-        'NAME': BASE_DIR / 'db.sqlite3',
-    }
-}
-
-
-# Password validation
-# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators
-
-AUTH_PASSWORD_VALIDATORS = [
-    {
-        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
-    },
-    {
-        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
-    },
-    {
-        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
-    },
-    {
-        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
-    },
-]
-
-
-# Internationalization
-# https://docs.djangoproject.com/en/5.0/topics/i18n/
-
-LANGUAGE_CODE = 'en-us'
-
-TIME_ZONE = 'UTC'
-
-USE_I18N = True
-
-USE_TZ = True
-
-
-# Static files (CSS, JavaScript, Images)
-# https://docs.djangoproject.com/en/5.0/howto/static-files/
-
-STATIC_URL = 'static/'
-
-# Default primary key field type
-# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
-
-DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
diff --git a/meganTest/Test1/Test1/wsgi.py b/meganTest/Test1/Test1/wsgi.py
deleted file mode 100644
index 83870d8d28d8de7ccc713b428d1a90ff6528e6f0..0000000000000000000000000000000000000000
--- a/meganTest/Test1/Test1/wsgi.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""
-WSGI config for Test1 project.
-
-It exposes the WSGI callable as a module-level variable named ``application``.
-
-For more information on this file, see
-https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
-"""
-
-import os
-
-from django.core.wsgi import get_wsgi_application
-
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Test1.settings')
-
-application = get_wsgi_application()
diff --git a/meganTest/Test1/manage.py b/meganTest/Test1/manage.py
deleted file mode 100644
index a70690763e6211217c8bc48bcb59d3d83cc45326..0000000000000000000000000000000000000000
--- a/meganTest/Test1/manage.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-"""Django's command-line utility for administrative tasks."""
-import os
-import sys
-
-
-def main():
-    """Run administrative tasks."""
-    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Test1.settings')
-    try:
-        from django.core.management import execute_from_command_line
-    except ImportError as exc:
-        raise ImportError(
-            "Couldn't import Django. Are you sure it's installed and "
-            "available on your PYTHONPATH environment variable? Did you "
-            "forget to activate a virtual environment?"
-        ) from exc
-    execute_from_command_line(sys.argv)
-
-
-if __name__ == '__main__':
-    main()