diff --git a/api-v2/.env.example b/backend/.env.example similarity index 100% rename from api-v2/.env.example rename to backend/.env.example diff --git a/api-v2/.gitignore b/backend/.gitignore similarity index 100% rename from api-v2/.gitignore rename to backend/.gitignore diff --git a/api-v2/README.md b/backend/README.md similarity index 100% rename from api-v2/README.md rename to backend/README.md diff --git a/api-v2/alembic.ini b/backend/alembic.ini similarity index 100% rename from api-v2/alembic.ini rename to backend/alembic.ini diff --git a/api-v2/alembic/env.py b/backend/alembic/env.py similarity index 100% rename from api-v2/alembic/env.py rename to backend/alembic/env.py diff --git a/api-v2/alembic/script.py.mako b/backend/alembic/script.py.mako similarity index 100% rename from api-v2/alembic/script.py.mako rename to backend/alembic/script.py.mako diff --git a/api-v2/alembic/versions/3ceec084158f_.py b/backend/alembic/versions/3ceec084158f_.py similarity index 100% rename from api-v2/alembic/versions/3ceec084158f_.py rename to backend/alembic/versions/3ceec084158f_.py diff --git a/api-v2/alembic/versions/cfc4e41b69d3_initial_form_api.py b/backend/alembic/versions/cfc4e41b69d3_initial_form_api.py similarity index 100% rename from api-v2/alembic/versions/cfc4e41b69d3_initial_form_api.py rename to backend/alembic/versions/cfc4e41b69d3_initial_form_api.py diff --git a/api-v2/alembic/versions/e4c8bb426528_add_user_types.py b/backend/alembic/versions/e4c8bb426528_add_user_types.py similarity index 100% rename from api-v2/alembic/versions/e4c8bb426528_add_user_types.py rename to backend/alembic/versions/e4c8bb426528_add_user_types.py diff --git a/api-v2/alembic/versions/ec8b1c17739a_drop_unused_tables.py b/backend/alembic/versions/ec8b1c17739a_drop_unused_tables.py similarity index 100% rename from api-v2/alembic/versions/ec8b1c17739a_drop_unused_tables.py rename to backend/alembic/versions/ec8b1c17739a_drop_unused_tables.py diff --git a/api-v2/app/__init__.py b/backend/app/__init__.py similarity index 100% rename from api-v2/app/__init__.py rename to backend/app/__init__.py diff --git a/api-v2/app/core/config.py b/backend/app/core/config.py similarity index 100% rename from api-v2/app/core/config.py rename to backend/app/core/config.py diff --git a/api-v2/app/core/db.py b/backend/app/core/db.py similarity index 100% rename from api-v2/app/core/db.py rename to backend/app/core/db.py diff --git a/api-v2/app/main.py b/backend/app/main.py similarity index 100% rename from api-v2/app/main.py rename to backend/app/main.py diff --git a/api-v2/app/modules/__init__.py b/backend/app/modules/__init__.py similarity index 100% rename from api-v2/app/modules/__init__.py rename to backend/app/modules/__init__.py diff --git a/api-v2/app/modules/access/__init__.py b/backend/app/modules/access/__init__.py similarity index 100% rename from api-v2/app/modules/access/__init__.py rename to backend/app/modules/access/__init__.py diff --git a/api-v2/app/modules/access/auth_controller.py b/backend/app/modules/access/auth_controller.py similarity index 100% rename from api-v2/app/modules/access/auth_controller.py rename to backend/app/modules/access/auth_controller.py diff --git a/api-v2/app/modules/access/crud.py b/backend/app/modules/access/crud.py similarity index 100% rename from api-v2/app/modules/access/crud.py rename to backend/app/modules/access/crud.py diff --git a/api-v2/app/modules/access/models.py b/backend/app/modules/access/models.py similarity index 100% rename from api-v2/app/modules/access/models.py rename to backend/app/modules/access/models.py diff --git a/api-v2/app/modules/access/schemas.py b/backend/app/modules/access/schemas.py similarity index 100% rename from api-v2/app/modules/access/schemas.py rename to backend/app/modules/access/schemas.py diff --git a/api-v2/app/modules/access/user_repo.py b/backend/app/modules/access/user_repo.py similarity index 100% rename from api-v2/app/modules/access/user_repo.py rename to backend/app/modules/access/user_repo.py diff --git a/api-v2/app/modules/access/user_roles.py b/backend/app/modules/access/user_roles.py similarity index 100% rename from api-v2/app/modules/access/user_roles.py rename to backend/app/modules/access/user_roles.py diff --git a/api-v2/app/modules/access/users_controller.py b/backend/app/modules/access/users_controller.py similarity index 100% rename from api-v2/app/modules/access/users_controller.py rename to backend/app/modules/access/users_controller.py diff --git a/api-v2/app/modules/deps.py b/backend/app/modules/deps.py similarity index 100% rename from api-v2/app/modules/deps.py rename to backend/app/modules/deps.py diff --git a/api-v2/app/modules/intake_profile/__init__.py b/backend/app/modules/intake_profile/__init__.py similarity index 100% rename from api-v2/app/modules/intake_profile/__init__.py rename to backend/app/modules/intake_profile/__init__.py diff --git a/api-v2/app/modules/intake_profile/controller.py b/backend/app/modules/intake_profile/controller.py similarity index 100% rename from api-v2/app/modules/intake_profile/controller.py rename to backend/app/modules/intake_profile/controller.py diff --git a/api-v2/app/modules/intake_profile/forms/forms.py b/backend/app/modules/intake_profile/forms/forms.py similarity index 100% rename from api-v2/app/modules/intake_profile/forms/forms.py rename to backend/app/modules/intake_profile/forms/forms.py diff --git a/api-v2/app/modules/intake_profile/model.py b/backend/app/modules/intake_profile/model.py similarity index 100% rename from api-v2/app/modules/intake_profile/model.py rename to backend/app/modules/intake_profile/model.py diff --git a/api-v2/app/modules/intake_profile/repository.py b/backend/app/modules/intake_profile/repository.py similarity index 100% rename from api-v2/app/modules/intake_profile/repository.py rename to backend/app/modules/intake_profile/repository.py diff --git a/api-v2/app/modules/intake_profile/schemas.py b/backend/app/modules/intake_profile/schemas.py similarity index 100% rename from api-v2/app/modules/intake_profile/schemas.py rename to backend/app/modules/intake_profile/schemas.py diff --git a/api-v2/app/modules/matching/__init__.py b/backend/app/modules/matching/__init__.py similarity index 100% rename from api-v2/app/modules/matching/__init__.py rename to backend/app/modules/matching/__init__.py diff --git a/api-v2/app/modules/matching/controller.py b/backend/app/modules/matching/controller.py similarity index 100% rename from api-v2/app/modules/matching/controller.py rename to backend/app/modules/matching/controller.py diff --git a/api-v2/app/modules/matching/model.py b/backend/app/modules/matching/model.py similarity index 100% rename from api-v2/app/modules/matching/model.py rename to backend/app/modules/matching/model.py diff --git a/api-v2/app/modules/matching/schemas.py b/backend/app/modules/matching/schemas.py similarity index 100% rename from api-v2/app/modules/matching/schemas.py rename to backend/app/modules/matching/schemas.py diff --git a/api-v2/app/modules/onboarding/__init__.py b/backend/app/modules/onboarding/__init__.py similarity index 100% rename from api-v2/app/modules/onboarding/__init__.py rename to backend/app/modules/onboarding/__init__.py diff --git a/api-v2/app/modules/onboarding/controller.py b/backend/app/modules/onboarding/controller.py similarity index 100% rename from api-v2/app/modules/onboarding/controller.py rename to backend/app/modules/onboarding/controller.py diff --git a/api-v2/app/modules/onboarding/model.py b/backend/app/modules/onboarding/model.py similarity index 100% rename from api-v2/app/modules/onboarding/model.py rename to backend/app/modules/onboarding/model.py diff --git a/api-v2/app/modules/onboarding/schemas.py b/backend/app/modules/onboarding/schemas.py similarity index 100% rename from api-v2/app/modules/onboarding/schemas.py rename to backend/app/modules/onboarding/schemas.py diff --git a/api-v2/app/modules/relationship_management/__init__.py b/backend/app/modules/relationship_management/__init__.py similarity index 100% rename from api-v2/app/modules/relationship_management/__init__.py rename to backend/app/modules/relationship_management/__init__.py diff --git a/api-v2/app/modules/relationship_management/controller.py b/backend/app/modules/relationship_management/controller.py similarity index 100% rename from api-v2/app/modules/relationship_management/controller.py rename to backend/app/modules/relationship_management/controller.py diff --git a/api-v2/app/modules/relationship_management/model.py b/backend/app/modules/relationship_management/model.py similarity index 100% rename from api-v2/app/modules/relationship_management/model.py rename to backend/app/modules/relationship_management/model.py diff --git a/api-v2/app/modules/relationship_management/schemas.py b/backend/app/modules/relationship_management/schemas.py similarity index 100% rename from api-v2/app/modules/relationship_management/schemas.py rename to backend/app/modules/relationship_management/schemas.py diff --git a/api-v2/app/modules/router.py b/backend/app/modules/router.py similarity index 100% rename from api-v2/app/modules/router.py rename to backend/app/modules/router.py diff --git a/api-v2/app/modules/tenant_housing_orgs/__init__.py b/backend/app/modules/tenant_housing_orgs/__init__.py similarity index 100% rename from api-v2/app/modules/tenant_housing_orgs/__init__.py rename to backend/app/modules/tenant_housing_orgs/__init__.py diff --git a/api-v2/app/modules/tenant_housing_orgs/controller.py b/backend/app/modules/tenant_housing_orgs/controller.py similarity index 100% rename from api-v2/app/modules/tenant_housing_orgs/controller.py rename to backend/app/modules/tenant_housing_orgs/controller.py diff --git a/api-v2/app/modules/tenant_housing_orgs/crud.py b/backend/app/modules/tenant_housing_orgs/crud.py similarity index 100% rename from api-v2/app/modules/tenant_housing_orgs/crud.py rename to backend/app/modules/tenant_housing_orgs/crud.py diff --git a/api-v2/app/modules/tenant_housing_orgs/models.py b/backend/app/modules/tenant_housing_orgs/models.py similarity index 100% rename from api-v2/app/modules/tenant_housing_orgs/models.py rename to backend/app/modules/tenant_housing_orgs/models.py diff --git a/api-v2/app/modules/tenant_housing_orgs/schemas.py b/backend/app/modules/tenant_housing_orgs/schemas.py similarity index 100% rename from api-v2/app/modules/tenant_housing_orgs/schemas.py rename to backend/app/modules/tenant_housing_orgs/schemas.py diff --git a/api-v2/app/seed.py b/backend/app/seed.py similarity index 100% rename from api-v2/app/seed.py rename to backend/app/seed.py diff --git a/api-v2/poetry.lock b/backend/poetry.lock similarity index 100% rename from api-v2/poetry.lock rename to backend/poetry.lock diff --git a/api-v2/pyproject.toml b/backend/pyproject.toml similarity index 100% rename from api-v2/pyproject.toml rename to backend/pyproject.toml diff --git a/api-v2/tests/__init__.py b/backend/tests/__init__.py similarity index 100% rename from api-v2/tests/__init__.py rename to backend/tests/__init__.py diff --git a/api-v2/tests/cognito_setup.py b/backend/tests/cognito_setup.py similarity index 100% rename from api-v2/tests/cognito_setup.py rename to backend/tests/cognito_setup.py diff --git a/api-v2/tests/conftest.py b/backend/tests/conftest.py similarity index 100% rename from api-v2/tests/conftest.py rename to backend/tests/conftest.py diff --git a/api-v2/tests/e2e/empty.py b/backend/tests/e2e/empty.py similarity index 100% rename from api-v2/tests/e2e/empty.py rename to backend/tests/e2e/empty.py diff --git a/api-v2/tests/integration/test_authentication.py b/backend/tests/integration/test_authentication.py similarity index 100% rename from api-v2/tests/integration/test_authentication.py rename to backend/tests/integration/test_authentication.py diff --git a/api-v2/tests/integration/test_forms.py b/backend/tests/integration/test_forms.py similarity index 100% rename from api-v2/tests/integration/test_forms.py rename to backend/tests/integration/test_forms.py diff --git a/api-v2/tests/integration/test_forms_schema.py b/backend/tests/integration/test_forms_schema.py similarity index 100% rename from api-v2/tests/integration/test_forms_schema.py rename to backend/tests/integration/test_forms_schema.py diff --git a/api-v2/tests/integration/test_host_controller.py b/backend/tests/integration/test_host_controller.py similarity index 100% rename from api-v2/tests/integration/test_host_controller.py rename to backend/tests/integration/test_host_controller.py diff --git a/api-v2/tests/integration/test_housing_orgs_controller.py b/backend/tests/integration/test_housing_orgs_controller.py similarity index 100% rename from api-v2/tests/integration/test_housing_orgs_controller.py rename to backend/tests/integration/test_housing_orgs_controller.py diff --git a/api-v2/tests/integration/test_user_repo.py b/backend/tests/integration/test_user_repo.py similarity index 100% rename from api-v2/tests/integration/test_user_repo.py rename to backend/tests/integration/test_user_repo.py diff --git a/api-v2/tests/test_alembic_migration.py b/backend/tests/test_alembic_migration.py similarity index 100% rename from api-v2/tests/test_alembic_migration.py rename to backend/tests/test_alembic_migration.py diff --git a/api-v2/tests/unit/access/__init_.py b/backend/tests/unit/access/__init_.py similarity index 100% rename from api-v2/tests/unit/access/__init_.py rename to backend/tests/unit/access/__init_.py diff --git a/api-v2/tests/unit/intake_profile/__init__.py b/backend/tests/unit/intake_profile/__init__.py similarity index 100% rename from api-v2/tests/unit/intake_profile/__init__.py rename to backend/tests/unit/intake_profile/__init__.py diff --git a/api-v2/tests/unit/matching/__init__.py b/backend/tests/unit/matching/__init__.py similarity index 100% rename from api-v2/tests/unit/matching/__init__.py rename to backend/tests/unit/matching/__init__.py diff --git a/api-v2/tests/unit/onboarding/__init__.py b/backend/tests/unit/onboarding/__init__.py similarity index 100% rename from api-v2/tests/unit/onboarding/__init__.py rename to backend/tests/unit/onboarding/__init__.py diff --git a/api-v2/tests/unit/relationship_management/__init__.py b/backend/tests/unit/relationship_management/__init__.py similarity index 100% rename from api-v2/tests/unit/relationship_management/__init__.py rename to backend/tests/unit/relationship_management/__init__.py diff --git a/api-v2/tests/unit/tenant_housing_provider/__init__.py b/backend/tests/unit/tenant_housing_provider/__init__.py similarity index 100% rename from api-v2/tests/unit/tenant_housing_provider/__init__.py rename to backend/tests/unit/tenant_housing_provider/__init__.py diff --git a/api-v2/tox.ini b/backend/tox.ini similarity index 100% rename from api-v2/tox.ini rename to backend/tox.ini diff --git a/api/.devcontainer/Dockerfile b/flask-api/.devcontainer/Dockerfile similarity index 100% rename from api/.devcontainer/Dockerfile rename to flask-api/.devcontainer/Dockerfile diff --git a/api/.devcontainer/devcontainer.json b/flask-api/.devcontainer/devcontainer.json similarity index 100% rename from api/.devcontainer/devcontainer.json rename to flask-api/.devcontainer/devcontainer.json diff --git a/api/.dockerignore b/flask-api/.dockerignore similarity index 100% rename from api/.dockerignore rename to flask-api/.dockerignore diff --git a/api/.env.dev.example b/flask-api/.env.dev.example similarity index 100% rename from api/.env.dev.example rename to flask-api/.env.dev.example diff --git a/api/.env.prod.example b/flask-api/.env.prod.example similarity index 100% rename from api/.env.prod.example rename to flask-api/.env.prod.example diff --git a/api/.env.staging.example b/flask-api/.env.staging.example similarity index 100% rename from api/.env.staging.example rename to flask-api/.env.staging.example diff --git a/api/.gitignore b/flask-api/.gitignore similarity index 100% rename from api/.gitignore rename to flask-api/.gitignore diff --git a/api/.openapi-generator-ignore b/flask-api/.openapi-generator-ignore similarity index 100% rename from api/.openapi-generator-ignore rename to flask-api/.openapi-generator-ignore diff --git a/api/.openapi-generator/FILES b/flask-api/.openapi-generator/FILES similarity index 100% rename from api/.openapi-generator/FILES rename to flask-api/.openapi-generator/FILES diff --git a/api/.openapi-generator/VERSION b/flask-api/.openapi-generator/VERSION similarity index 100% rename from api/.openapi-generator/VERSION rename to flask-api/.openapi-generator/VERSION diff --git a/api/.travis.yml b/flask-api/.travis.yml similarity index 100% rename from api/.travis.yml rename to flask-api/.travis.yml diff --git a/api/Dockerfile b/flask-api/Dockerfile similarity index 100% rename from api/Dockerfile rename to flask-api/Dockerfile diff --git a/api/README.md b/flask-api/README.md similarity index 100% rename from api/README.md rename to flask-api/README.md diff --git a/api/alembic.ini b/flask-api/alembic.ini similarity index 100% rename from api/alembic.ini rename to flask-api/alembic.ini diff --git a/api/alembic/env.py b/flask-api/alembic/env.py similarity index 100% rename from api/alembic/env.py rename to flask-api/alembic/env.py diff --git a/api/alembic/script.py.mako b/flask-api/alembic/script.py.mako similarity index 100% rename from api/alembic/script.py.mako rename to flask-api/alembic/script.py.mako diff --git a/api/alembic/versions/3ceec084158f_.py b/flask-api/alembic/versions/3ceec084158f_.py similarity index 100% rename from api/alembic/versions/3ceec084158f_.py rename to flask-api/alembic/versions/3ceec084158f_.py diff --git a/api/alembic/versions/cfc4e41b69d3_initial_form_api.py b/flask-api/alembic/versions/cfc4e41b69d3_initial_form_api.py similarity index 100% rename from api/alembic/versions/cfc4e41b69d3_initial_form_api.py rename to flask-api/alembic/versions/cfc4e41b69d3_initial_form_api.py diff --git a/api/alembic/versions/e4c8bb426528_add_user_types.py b/flask-api/alembic/versions/e4c8bb426528_add_user_types.py similarity index 100% rename from api/alembic/versions/e4c8bb426528_add_user_types.py rename to flask-api/alembic/versions/e4c8bb426528_add_user_types.py diff --git a/api/alembic/versions/ec8b1c17739a_drop_unused_tables.py b/flask-api/alembic/versions/ec8b1c17739a_drop_unused_tables.py similarity index 100% rename from api/alembic/versions/ec8b1c17739a_drop_unused_tables.py rename to flask-api/alembic/versions/ec8b1c17739a_drop_unused_tables.py diff --git a/api/git_push.sh b/flask-api/git_push.sh similarity index 100% rename from api/git_push.sh rename to flask-api/git_push.sh diff --git a/api/openapi_server/__init__.py b/flask-api/openapi_server/__init__.py similarity index 100% rename from api/openapi_server/__init__.py rename to flask-api/openapi_server/__init__.py diff --git a/api/openapi_server/__main__.py b/flask-api/openapi_server/__main__.py similarity index 100% rename from api/openapi_server/__main__.py rename to flask-api/openapi_server/__main__.py diff --git a/api/openapi_server/app.py b/flask-api/openapi_server/app.py similarity index 100% rename from api/openapi_server/app.py rename to flask-api/openapi_server/app.py diff --git a/api/openapi_server/configs/__init__.py b/flask-api/openapi_server/configs/__init__.py similarity index 100% rename from api/openapi_server/configs/__init__.py rename to flask-api/openapi_server/configs/__init__.py diff --git a/api/openapi_server/configs/development.py b/flask-api/openapi_server/configs/development.py similarity index 100% rename from api/openapi_server/configs/development.py rename to flask-api/openapi_server/configs/development.py diff --git a/api/openapi_server/configs/huu_config.py b/flask-api/openapi_server/configs/huu_config.py similarity index 100% rename from api/openapi_server/configs/huu_config.py rename to flask-api/openapi_server/configs/huu_config.py diff --git a/api/openapi_server/configs/mock_aws.py b/flask-api/openapi_server/configs/mock_aws.py similarity index 100% rename from api/openapi_server/configs/mock_aws.py rename to flask-api/openapi_server/configs/mock_aws.py diff --git a/api/openapi_server/configs/production.py b/flask-api/openapi_server/configs/production.py similarity index 100% rename from api/openapi_server/configs/production.py rename to flask-api/openapi_server/configs/production.py diff --git a/api/openapi_server/configs/registry.py b/flask-api/openapi_server/configs/registry.py similarity index 100% rename from api/openapi_server/configs/registry.py rename to flask-api/openapi_server/configs/registry.py diff --git a/api/openapi_server/configs/staging.py b/flask-api/openapi_server/configs/staging.py similarity index 100% rename from api/openapi_server/configs/staging.py rename to flask-api/openapi_server/configs/staging.py diff --git a/api/openapi_server/controllers/__init__.py b/flask-api/openapi_server/controllers/__init__.py similarity index 100% rename from api/openapi_server/controllers/__init__.py rename to flask-api/openapi_server/controllers/__init__.py diff --git a/api/openapi_server/controllers/admin_controller.py b/flask-api/openapi_server/controllers/admin_controller.py similarity index 100% rename from api/openapi_server/controllers/admin_controller.py rename to flask-api/openapi_server/controllers/admin_controller.py diff --git a/api/openapi_server/controllers/auth_controller.py b/flask-api/openapi_server/controllers/auth_controller.py similarity index 100% rename from api/openapi_server/controllers/auth_controller.py rename to flask-api/openapi_server/controllers/auth_controller.py diff --git a/api/openapi_server/controllers/coordinator_controller.py b/flask-api/openapi_server/controllers/coordinator_controller.py similarity index 100% rename from api/openapi_server/controllers/coordinator_controller.py rename to flask-api/openapi_server/controllers/coordinator_controller.py diff --git a/api/openapi_server/controllers/forms_controller.py b/flask-api/openapi_server/controllers/forms_controller.py similarity index 100% rename from api/openapi_server/controllers/forms_controller.py rename to flask-api/openapi_server/controllers/forms_controller.py diff --git a/api/openapi_server/controllers/host_controller.py b/flask-api/openapi_server/controllers/host_controller.py similarity index 100% rename from api/openapi_server/controllers/host_controller.py rename to flask-api/openapi_server/controllers/host_controller.py diff --git a/api/openapi_server/controllers/responses_controller.py b/flask-api/openapi_server/controllers/responses_controller.py similarity index 100% rename from api/openapi_server/controllers/responses_controller.py rename to flask-api/openapi_server/controllers/responses_controller.py diff --git a/api/openapi_server/controllers/security_controller.py b/flask-api/openapi_server/controllers/security_controller.py similarity index 100% rename from api/openapi_server/controllers/security_controller.py rename to flask-api/openapi_server/controllers/security_controller.py diff --git a/api/openapi_server/controllers/service_provider_controller.py b/flask-api/openapi_server/controllers/service_provider_controller.py similarity index 100% rename from api/openapi_server/controllers/service_provider_controller.py rename to flask-api/openapi_server/controllers/service_provider_controller.py diff --git a/api/openapi_server/controllers/users_controller.py b/flask-api/openapi_server/controllers/users_controller.py similarity index 100% rename from api/openapi_server/controllers/users_controller.py rename to flask-api/openapi_server/controllers/users_controller.py diff --git a/api/openapi_server/exceptions.py b/flask-api/openapi_server/exceptions.py similarity index 100% rename from api/openapi_server/exceptions.py rename to flask-api/openapi_server/exceptions.py diff --git a/api/openapi_server/models/README.md b/flask-api/openapi_server/models/README.md similarity index 100% rename from api/openapi_server/models/README.md rename to flask-api/openapi_server/models/README.md diff --git a/api/openapi_server/models/__init__.py b/flask-api/openapi_server/models/__init__.py similarity index 100% rename from api/openapi_server/models/__init__.py rename to flask-api/openapi_server/models/__init__.py diff --git a/api/openapi_server/models/database.py b/flask-api/openapi_server/models/database.py similarity index 100% rename from api/openapi_server/models/database.py rename to flask-api/openapi_server/models/database.py diff --git a/api/openapi_server/models/schema.py b/flask-api/openapi_server/models/schema.py similarity index 100% rename from api/openapi_server/models/schema.py rename to flask-api/openapi_server/models/schema.py diff --git a/api/openapi_server/models/user_roles.py b/flask-api/openapi_server/models/user_roles.py similarity index 100% rename from api/openapi_server/models/user_roles.py rename to flask-api/openapi_server/models/user_roles.py diff --git a/api/openapi_server/openapi/openapi.yaml b/flask-api/openapi_server/openapi/openapi.yaml similarity index 100% rename from api/openapi_server/openapi/openapi.yaml rename to flask-api/openapi_server/openapi/openapi.yaml diff --git a/api/openapi_server/openapi/parameters/_index.yaml b/flask-api/openapi_server/openapi/parameters/_index.yaml similarity index 100% rename from api/openapi_server/openapi/parameters/_index.yaml rename to flask-api/openapi_server/openapi/parameters/_index.yaml diff --git a/api/openapi_server/openapi/paths/auth/authConfirm.yaml b/flask-api/openapi_server/openapi/paths/auth/authConfirm.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authConfirm.yaml rename to flask-api/openapi_server/openapi/paths/auth/authConfirm.yaml diff --git a/api/openapi_server/openapi/paths/auth/authConfirmForgotPassword.yaml b/flask-api/openapi_server/openapi/paths/auth/authConfirmForgotPassword.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authConfirmForgotPassword.yaml rename to flask-api/openapi_server/openapi/paths/auth/authConfirmForgotPassword.yaml diff --git a/api/openapi_server/openapi/paths/auth/authConfirmInvite.yaml b/flask-api/openapi_server/openapi/paths/auth/authConfirmInvite.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authConfirmInvite.yaml rename to flask-api/openapi_server/openapi/paths/auth/authConfirmInvite.yaml diff --git a/api/openapi_server/openapi/paths/auth/authForgotPassword.yaml b/flask-api/openapi_server/openapi/paths/auth/authForgotPassword.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authForgotPassword.yaml rename to flask-api/openapi_server/openapi/paths/auth/authForgotPassword.yaml diff --git a/api/openapi_server/openapi/paths/auth/authGoogle.yaml b/flask-api/openapi_server/openapi/paths/auth/authGoogle.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authGoogle.yaml rename to flask-api/openapi_server/openapi/paths/auth/authGoogle.yaml diff --git a/api/openapi_server/openapi/paths/auth/authGoogleSignIn.yaml b/flask-api/openapi_server/openapi/paths/auth/authGoogleSignIn.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authGoogleSignIn.yaml rename to flask-api/openapi_server/openapi/paths/auth/authGoogleSignIn.yaml diff --git a/api/openapi_server/openapi/paths/auth/authGoogleSignUp.yaml b/flask-api/openapi_server/openapi/paths/auth/authGoogleSignUp.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authGoogleSignUp.yaml rename to flask-api/openapi_server/openapi/paths/auth/authGoogleSignUp.yaml diff --git a/api/openapi_server/openapi/paths/auth/authInvite.yaml b/flask-api/openapi_server/openapi/paths/auth/authInvite.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authInvite.yaml rename to flask-api/openapi_server/openapi/paths/auth/authInvite.yaml diff --git a/api/openapi_server/openapi/paths/auth/authNewPassword.yaml b/flask-api/openapi_server/openapi/paths/auth/authNewPassword.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authNewPassword.yaml rename to flask-api/openapi_server/openapi/paths/auth/authNewPassword.yaml diff --git a/api/openapi_server/openapi/paths/auth/authPrivate.yaml b/flask-api/openapi_server/openapi/paths/auth/authPrivate.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authPrivate.yaml rename to flask-api/openapi_server/openapi/paths/auth/authPrivate.yaml diff --git a/api/openapi_server/openapi/paths/auth/authRefresh.yaml b/flask-api/openapi_server/openapi/paths/auth/authRefresh.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authRefresh.yaml rename to flask-api/openapi_server/openapi/paths/auth/authRefresh.yaml diff --git a/api/openapi_server/openapi/paths/auth/authResendConfirmationCode.yaml b/flask-api/openapi_server/openapi/paths/auth/authResendConfirmationCode.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authResendConfirmationCode.yaml rename to flask-api/openapi_server/openapi/paths/auth/authResendConfirmationCode.yaml diff --git a/api/openapi_server/openapi/paths/auth/authSession.yaml b/flask-api/openapi_server/openapi/paths/auth/authSession.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authSession.yaml rename to flask-api/openapi_server/openapi/paths/auth/authSession.yaml diff --git a/api/openapi_server/openapi/paths/auth/authSignUpCoordinator.yaml b/flask-api/openapi_server/openapi/paths/auth/authSignUpCoordinator.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authSignUpCoordinator.yaml rename to flask-api/openapi_server/openapi/paths/auth/authSignUpCoordinator.yaml diff --git a/api/openapi_server/openapi/paths/auth/authSignUpHost.yaml b/flask-api/openapi_server/openapi/paths/auth/authSignUpHost.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authSignUpHost.yaml rename to flask-api/openapi_server/openapi/paths/auth/authSignUpHost.yaml diff --git a/api/openapi_server/openapi/paths/auth/authSignin.yaml b/flask-api/openapi_server/openapi/paths/auth/authSignin.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authSignin.yaml rename to flask-api/openapi_server/openapi/paths/auth/authSignin.yaml diff --git a/api/openapi_server/openapi/paths/auth/authSignout.yaml b/flask-api/openapi_server/openapi/paths/auth/authSignout.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authSignout.yaml rename to flask-api/openapi_server/openapi/paths/auth/authSignout.yaml diff --git a/api/openapi_server/openapi/paths/auth/authUser.yaml b/flask-api/openapi_server/openapi/paths/auth/authUser.yaml similarity index 100% rename from api/openapi_server/openapi/paths/auth/authUser.yaml rename to flask-api/openapi_server/openapi/paths/auth/authUser.yaml diff --git a/api/openapi_server/openapi/paths/forms.yaml b/flask-api/openapi_server/openapi/paths/forms.yaml similarity index 100% rename from api/openapi_server/openapi/paths/forms.yaml rename to flask-api/openapi_server/openapi/paths/forms.yaml diff --git a/api/openapi_server/openapi/paths/host.yaml b/flask-api/openapi_server/openapi/paths/host.yaml similarity index 100% rename from api/openapi_server/openapi/paths/host.yaml rename to flask-api/openapi_server/openapi/paths/host.yaml diff --git a/api/openapi_server/openapi/paths/post-form.yaml b/flask-api/openapi_server/openapi/paths/post-form.yaml similarity index 100% rename from api/openapi_server/openapi/paths/post-form.yaml rename to flask-api/openapi_server/openapi/paths/post-form.yaml diff --git a/api/openapi_server/openapi/paths/responses.yaml b/flask-api/openapi_server/openapi/paths/responses.yaml similarity index 100% rename from api/openapi_server/openapi/paths/responses.yaml rename to flask-api/openapi_server/openapi/paths/responses.yaml diff --git a/api/openapi_server/openapi/paths/serviceProvider.yaml b/flask-api/openapi_server/openapi/paths/serviceProvider.yaml similarity index 100% rename from api/openapi_server/openapi/paths/serviceProvider.yaml rename to flask-api/openapi_server/openapi/paths/serviceProvider.yaml diff --git a/api/openapi_server/openapi/paths/serviceProviders.yaml b/flask-api/openapi_server/openapi/paths/serviceProviders.yaml similarity index 100% rename from api/openapi_server/openapi/paths/serviceProviders.yaml rename to flask-api/openapi_server/openapi/paths/serviceProviders.yaml diff --git a/api/openapi_server/openapi/paths/users.yaml b/flask-api/openapi_server/openapi/paths/users.yaml similarity index 100% rename from api/openapi_server/openapi/paths/users.yaml rename to flask-api/openapi_server/openapi/paths/users.yaml diff --git a/api/openapi_server/openapi/responses/_index.yaml b/flask-api/openapi_server/openapi/responses/_index.yaml similarity index 100% rename from api/openapi_server/openapi/responses/_index.yaml rename to flask-api/openapi_server/openapi/responses/_index.yaml diff --git a/api/openapi_server/openapi/schemas/_index.yaml b/flask-api/openapi_server/openapi/schemas/_index.yaml similarity index 100% rename from api/openapi_server/openapi/schemas/_index.yaml rename to flask-api/openapi_server/openapi/schemas/_index.yaml diff --git a/api/openapi_server/repositories/__init__.py b/flask-api/openapi_server/repositories/__init__.py similarity index 100% rename from api/openapi_server/repositories/__init__.py rename to flask-api/openapi_server/repositories/__init__.py diff --git a/api/openapi_server/repositories/base.py b/flask-api/openapi_server/repositories/base.py similarity index 100% rename from api/openapi_server/repositories/base.py rename to flask-api/openapi_server/repositories/base.py diff --git a/api/openapi_server/repositories/forms.py b/flask-api/openapi_server/repositories/forms.py similarity index 100% rename from api/openapi_server/repositories/forms.py rename to flask-api/openapi_server/repositories/forms.py diff --git a/api/openapi_server/repositories/service_provider_repository.py b/flask-api/openapi_server/repositories/service_provider_repository.py similarity index 100% rename from api/openapi_server/repositories/service_provider_repository.py rename to flask-api/openapi_server/repositories/service_provider_repository.py diff --git a/api/openapi_server/repositories/user_repo.py b/flask-api/openapi_server/repositories/user_repo.py similarity index 100% rename from api/openapi_server/repositories/user_repo.py rename to flask-api/openapi_server/repositories/user_repo.py diff --git a/api/openapi_server/typing_utils.py b/flask-api/openapi_server/typing_utils.py similarity index 100% rename from api/openapi_server/typing_utils.py rename to flask-api/openapi_server/typing_utils.py diff --git a/api/openapi_server/util.py b/flask-api/openapi_server/util.py similarity index 100% rename from api/openapi_server/util.py rename to flask-api/openapi_server/util.py diff --git a/api/pyproject.toml b/flask-api/pyproject.toml similarity index 100% rename from api/pyproject.toml rename to flask-api/pyproject.toml diff --git a/api/requirements-dev.txt b/flask-api/requirements-dev.txt similarity index 100% rename from api/requirements-dev.txt rename to flask-api/requirements-dev.txt diff --git a/api/requirements.txt b/flask-api/requirements.txt similarity index 100% rename from api/requirements.txt rename to flask-api/requirements.txt diff --git a/api/tests/__init__.py b/flask-api/tests/__init__.py similarity index 100% rename from api/tests/__init__.py rename to flask-api/tests/__init__.py diff --git a/api/tests/conftest.py b/flask-api/tests/conftest.py similarity index 100% rename from api/tests/conftest.py rename to flask-api/tests/conftest.py diff --git a/api/tests/setup_utils.py b/flask-api/tests/setup_utils.py similarity index 100% rename from api/tests/setup_utils.py rename to flask-api/tests/setup_utils.py diff --git a/api/tests/test_alembic_migration.py b/flask-api/tests/test_alembic_migration.py similarity index 100% rename from api/tests/test_alembic_migration.py rename to flask-api/tests/test_alembic_migration.py diff --git a/api/tests/test_authentication.py b/flask-api/tests/test_authentication.py similarity index 100% rename from api/tests/test_authentication.py rename to flask-api/tests/test_authentication.py diff --git a/api/tests/test_configs.py b/flask-api/tests/test_configs.py similarity index 100% rename from api/tests/test_configs.py rename to flask-api/tests/test_configs.py diff --git a/api/tests/test_forms_repo.py b/flask-api/tests/test_forms_repo.py similarity index 100% rename from api/tests/test_forms_repo.py rename to flask-api/tests/test_forms_repo.py diff --git a/api/tests/test_forms_schema.py b/flask-api/tests/test_forms_schema.py similarity index 100% rename from api/tests/test_forms_schema.py rename to flask-api/tests/test_forms_schema.py diff --git a/api/tests/test_host_controller.py b/flask-api/tests/test_host_controller.py similarity index 100% rename from api/tests/test_host_controller.py rename to flask-api/tests/test_host_controller.py diff --git a/api/tests/test_mocking.py b/flask-api/tests/test_mocking.py similarity index 100% rename from api/tests/test_mocking.py rename to flask-api/tests/test_mocking.py diff --git a/api/tests/test_schema.py b/flask-api/tests/test_schema.py similarity index 100% rename from api/tests/test_schema.py rename to flask-api/tests/test_schema.py diff --git a/api/tests/test_service_provider_controller.py b/flask-api/tests/test_service_provider_controller.py similarity index 100% rename from api/tests/test_service_provider_controller.py rename to flask-api/tests/test_service_provider_controller.py diff --git a/api/tests/test_service_provider_repository.py b/flask-api/tests/test_service_provider_repository.py similarity index 100% rename from api/tests/test_service_provider_repository.py rename to flask-api/tests/test_service_provider_repository.py diff --git a/api/tests/test_user_repo.py b/flask-api/tests/test_user_repo.py similarity index 100% rename from api/tests/test_user_repo.py rename to flask-api/tests/test_user_repo.py diff --git a/api/tox.ini b/flask-api/tox.ini similarity index 100% rename from api/tox.ini rename to flask-api/tox.ini diff --git a/app/.devcontainer/Dockerfile b/frontend/.devcontainer/Dockerfile similarity index 100% rename from app/.devcontainer/Dockerfile rename to frontend/.devcontainer/Dockerfile diff --git a/app/.devcontainer/devcontainer.json b/frontend/.devcontainer/devcontainer.json similarity index 100% rename from app/.devcontainer/devcontainer.json rename to frontend/.devcontainer/devcontainer.json diff --git a/app/.env.devcontainer b/frontend/.env.devcontainer similarity index 100% rename from app/.env.devcontainer rename to frontend/.env.devcontainer diff --git a/app/.env.example b/frontend/.env.example similarity index 100% rename from app/.env.example rename to frontend/.env.example diff --git a/app/.eslintignore b/frontend/.eslintignore similarity index 100% rename from app/.eslintignore rename to frontend/.eslintignore diff --git a/app/.eslintrc b/frontend/.eslintrc similarity index 100% rename from app/.eslintrc rename to frontend/.eslintrc diff --git a/app/.gitignore b/frontend/.gitignore similarity index 100% rename from app/.gitignore rename to frontend/.gitignore diff --git a/app/.husky/pre-commit b/frontend/.husky/pre-commit similarity index 100% rename from app/.husky/pre-commit rename to frontend/.husky/pre-commit diff --git a/app/.prettierignore b/frontend/.prettierignore similarity index 100% rename from app/.prettierignore rename to frontend/.prettierignore diff --git a/app/.prettierrc b/frontend/.prettierrc similarity index 100% rename from app/.prettierrc rename to frontend/.prettierrc diff --git a/app/Dockerfile b/frontend/Dockerfile similarity index 100% rename from app/Dockerfile rename to frontend/Dockerfile diff --git a/app/README.md b/frontend/README.md similarity index 100% rename from app/README.md rename to frontend/README.md diff --git a/app/check-node-version.mjs b/frontend/check-node-version.mjs similarity index 100% rename from app/check-node-version.mjs rename to frontend/check-node-version.mjs diff --git a/app/cypress.config.ts b/frontend/cypress.config.ts similarity index 100% rename from app/cypress.config.ts rename to frontend/cypress.config.ts diff --git a/app/cypress/e2e/create-new-password.cy.ts b/frontend/cypress/e2e/create-new-password.cy.ts similarity index 100% rename from app/cypress/e2e/create-new-password.cy.ts rename to frontend/cypress/e2e/create-new-password.cy.ts diff --git a/app/cypress/e2e/forgot-password.cy.ts b/frontend/cypress/e2e/forgot-password.cy.ts similarity index 100% rename from app/cypress/e2e/forgot-password.cy.ts rename to frontend/cypress/e2e/forgot-password.cy.ts diff --git a/app/cypress/e2e/sign-up.cy.ts b/frontend/cypress/e2e/sign-up.cy.ts similarity index 100% rename from app/cypress/e2e/sign-up.cy.ts rename to frontend/cypress/e2e/sign-up.cy.ts diff --git a/app/cypress/e2e/test-authentication.cy.ts b/frontend/cypress/e2e/test-authentication.cy.ts similarity index 100% rename from app/cypress/e2e/test-authentication.cy.ts rename to frontend/cypress/e2e/test-authentication.cy.ts diff --git a/app/cypress/fixtures/example.json b/frontend/cypress/fixtures/example.json similarity index 100% rename from app/cypress/fixtures/example.json rename to frontend/cypress/fixtures/example.json diff --git a/app/cypress/support/commands.ts b/frontend/cypress/support/commands.ts similarity index 100% rename from app/cypress/support/commands.ts rename to frontend/cypress/support/commands.ts diff --git a/app/cypress/support/component-index.html b/frontend/cypress/support/component-index.html similarity index 100% rename from app/cypress/support/component-index.html rename to frontend/cypress/support/component-index.html diff --git a/app/cypress/support/component.ts b/frontend/cypress/support/component.ts similarity index 100% rename from app/cypress/support/component.ts rename to frontend/cypress/support/component.ts diff --git a/app/cypress/support/e2e.ts b/frontend/cypress/support/e2e.ts similarity index 100% rename from app/cypress/support/e2e.ts rename to frontend/cypress/support/e2e.ts diff --git a/app/cypress/tsconfig.json b/frontend/cypress/tsconfig.json similarity index 100% rename from app/cypress/tsconfig.json rename to frontend/cypress/tsconfig.json diff --git a/app/index.html b/frontend/index.html similarity index 100% rename from app/index.html rename to frontend/index.html diff --git a/app/openapi-config.ts b/frontend/openapi-config.ts similarity index 100% rename from app/openapi-config.ts rename to frontend/openapi-config.ts diff --git a/app/package-lock.json b/frontend/package-lock.json similarity index 100% rename from app/package-lock.json rename to frontend/package-lock.json diff --git a/app/package.json b/frontend/package.json similarity index 100% rename from app/package.json rename to frontend/package.json diff --git a/app/public/mockServiceWorker.js b/frontend/public/mockServiceWorker.js similarity index 100% rename from app/public/mockServiceWorker.js rename to frontend/public/mockServiceWorker.js diff --git a/app/src/app/authSlice.ts b/frontend/src/app/authSlice.ts similarity index 100% rename from app/src/app/authSlice.ts rename to frontend/src/app/authSlice.ts diff --git a/app/src/app/helpers.ts b/frontend/src/app/helpers.ts similarity index 100% rename from app/src/app/helpers.ts rename to frontend/src/app/helpers.ts diff --git a/app/src/app/hooks/store.ts b/frontend/src/app/hooks/store.ts similarity index 100% rename from app/src/app/hooks/store.ts rename to frontend/src/app/hooks/store.ts diff --git a/app/src/app/hooks/useAuth.ts b/frontend/src/app/hooks/useAuth.ts similarity index 100% rename from app/src/app/hooks/useAuth.ts rename to frontend/src/app/hooks/useAuth.ts diff --git a/app/src/app/store.ts b/frontend/src/app/store.ts similarity index 100% rename from app/src/app/store.ts rename to frontend/src/app/store.ts diff --git a/app/src/components/Icons/CoordinatorIcon.tsx b/frontend/src/components/Icons/CoordinatorIcon.tsx similarity index 100% rename from app/src/components/Icons/CoordinatorIcon.tsx rename to frontend/src/components/Icons/CoordinatorIcon.tsx diff --git a/app/src/components/Icons/GuestIcon.tsx b/frontend/src/components/Icons/GuestIcon.tsx similarity index 100% rename from app/src/components/Icons/GuestIcon.tsx rename to frontend/src/components/Icons/GuestIcon.tsx diff --git a/app/src/components/Icons/HostIcon.tsx b/frontend/src/components/Icons/HostIcon.tsx similarity index 100% rename from app/src/components/Icons/HostIcon.tsx rename to frontend/src/components/Icons/HostIcon.tsx diff --git a/app/src/components/Icons/InProgressIcon.tsx b/frontend/src/components/Icons/InProgressIcon.tsx similarity index 100% rename from app/src/components/Icons/InProgressIcon.tsx rename to frontend/src/components/Icons/InProgressIcon.tsx diff --git a/app/src/components/Icons/index.ts b/frontend/src/components/Icons/index.ts similarity index 100% rename from app/src/components/Icons/index.ts rename to frontend/src/components/Icons/index.ts diff --git a/app/src/components/authentication/AccountVerificationForm.tsx b/frontend/src/components/authentication/AccountVerificationForm.tsx similarity index 100% rename from app/src/components/authentication/AccountVerificationForm.tsx rename to frontend/src/components/authentication/AccountVerificationForm.tsx diff --git a/app/src/components/authentication/CodeField.tsx b/frontend/src/components/authentication/CodeField.tsx similarity index 100% rename from app/src/components/authentication/CodeField.tsx rename to frontend/src/components/authentication/CodeField.tsx diff --git a/app/src/components/authentication/FormContainer.tsx b/frontend/src/components/authentication/FormContainer.tsx similarity index 100% rename from app/src/components/authentication/FormContainer.tsx rename to frontend/src/components/authentication/FormContainer.tsx diff --git a/app/src/components/authentication/NewPasswordForm.tsx b/frontend/src/components/authentication/NewPasswordForm.tsx similarity index 100% rename from app/src/components/authentication/NewPasswordForm.tsx rename to frontend/src/components/authentication/NewPasswordForm.tsx diff --git a/app/src/components/authentication/PasswordField.tsx b/frontend/src/components/authentication/PasswordField.tsx similarity index 100% rename from app/src/components/authentication/PasswordField.tsx rename to frontend/src/components/authentication/PasswordField.tsx diff --git a/app/src/components/authentication/ProtectedRoute.tsx b/frontend/src/components/authentication/ProtectedRoute.tsx similarity index 100% rename from app/src/components/authentication/ProtectedRoute.tsx rename to frontend/src/components/authentication/ProtectedRoute.tsx diff --git a/app/src/components/authentication/ResetPasswordContext.tsx b/frontend/src/components/authentication/ResetPasswordContext.tsx similarity index 100% rename from app/src/components/authentication/ResetPasswordContext.tsx rename to frontend/src/components/authentication/ResetPasswordContext.tsx diff --git a/app/src/components/authentication/SignInForm.tsx b/frontend/src/components/authentication/SignInForm.tsx similarity index 100% rename from app/src/components/authentication/SignInForm.tsx rename to frontend/src/components/authentication/SignInForm.tsx diff --git a/app/src/components/authentication/SignUpForm.tsx b/frontend/src/components/authentication/SignUpForm.tsx similarity index 100% rename from app/src/components/authentication/SignUpForm.tsx rename to frontend/src/components/authentication/SignUpForm.tsx diff --git a/app/src/components/authentication/__tests__/CodeField.test.tsx b/frontend/src/components/authentication/__tests__/CodeField.test.tsx similarity index 100% rename from app/src/components/authentication/__tests__/CodeField.test.tsx rename to frontend/src/components/authentication/__tests__/CodeField.test.tsx diff --git a/app/src/components/authentication/__tests__/SignInForm.test.tsx b/frontend/src/components/authentication/__tests__/SignInForm.test.tsx similarity index 100% rename from app/src/components/authentication/__tests__/SignInForm.test.tsx rename to frontend/src/components/authentication/__tests__/SignInForm.test.tsx diff --git a/app/src/components/authentication/__tests__/SignUpForm.test.tsx b/frontend/src/components/authentication/__tests__/SignUpForm.test.tsx similarity index 100% rename from app/src/components/authentication/__tests__/SignUpForm.test.tsx rename to frontend/src/components/authentication/__tests__/SignUpForm.test.tsx diff --git a/app/src/components/authentication/hooks/useAuthenticateWithOAuth.ts b/frontend/src/components/authentication/hooks/useAuthenticateWithOAuth.ts similarity index 100% rename from app/src/components/authentication/hooks/useAuthenticateWithOAuth.ts rename to frontend/src/components/authentication/hooks/useAuthenticateWithOAuth.ts diff --git a/app/src/components/authentication/index.ts b/frontend/src/components/authentication/index.ts similarity index 100% rename from app/src/components/authentication/index.ts rename to frontend/src/components/authentication/index.ts diff --git a/app/src/components/common/AppContainer.tsx b/frontend/src/components/common/AppContainer.tsx similarity index 100% rename from app/src/components/common/AppContainer.tsx rename to frontend/src/components/common/AppContainer.tsx diff --git a/app/src/components/common/AppLayout.tsx b/frontend/src/components/common/AppLayout.tsx similarity index 100% rename from app/src/components/common/AppLayout.tsx rename to frontend/src/components/common/AppLayout.tsx diff --git a/app/src/components/common/AuthenticatedHeader.tsx b/frontend/src/components/common/AuthenticatedHeader.tsx similarity index 100% rename from app/src/components/common/AuthenticatedHeader.tsx rename to frontend/src/components/common/AuthenticatedHeader.tsx diff --git a/app/src/components/common/Avatar.tsx b/frontend/src/components/common/Avatar.tsx similarity index 100% rename from app/src/components/common/Avatar.tsx rename to frontend/src/components/common/Avatar.tsx diff --git a/app/src/components/common/GuestInviteButton.tsx b/frontend/src/components/common/GuestInviteButton.tsx similarity index 100% rename from app/src/components/common/GuestInviteButton.tsx rename to frontend/src/components/common/GuestInviteButton.tsx diff --git a/app/src/components/common/Header.tsx b/frontend/src/components/common/Header.tsx similarity index 100% rename from app/src/components/common/Header.tsx rename to frontend/src/components/common/Header.tsx diff --git a/app/src/components/common/HomeLink.tsx b/frontend/src/components/common/HomeLink.tsx similarity index 100% rename from app/src/components/common/HomeLink.tsx rename to frontend/src/components/common/HomeLink.tsx diff --git a/app/src/components/common/Loading.tsx b/frontend/src/components/common/Loading.tsx similarity index 100% rename from app/src/components/common/Loading.tsx rename to frontend/src/components/common/Loading.tsx diff --git a/app/src/components/common/PasswordValidation.tsx b/frontend/src/components/common/PasswordValidation.tsx similarity index 100% rename from app/src/components/common/PasswordValidation.tsx rename to frontend/src/components/common/PasswordValidation.tsx diff --git a/app/src/components/common/ProgressBar.tsx b/frontend/src/components/common/ProgressBar.tsx similarity index 100% rename from app/src/components/common/ProgressBar.tsx rename to frontend/src/components/common/ProgressBar.tsx diff --git a/app/src/components/common/UiPlaceholder.tsx b/frontend/src/components/common/UiPlaceholder.tsx similarity index 100% rename from app/src/components/common/UiPlaceholder.tsx rename to frontend/src/components/common/UiPlaceholder.tsx diff --git a/app/src/components/common/__tests__/GuestInviteButton.test.tsx b/frontend/src/components/common/__tests__/GuestInviteButton.test.tsx similarity index 100% rename from app/src/components/common/__tests__/GuestInviteButton.test.tsx rename to frontend/src/components/common/__tests__/GuestInviteButton.test.tsx diff --git a/app/src/components/common/index.ts b/frontend/src/components/common/index.ts similarity index 100% rename from app/src/components/common/index.ts rename to frontend/src/components/common/index.ts diff --git a/app/src/components/dashboard/CoordinatorContact.tsx b/frontend/src/components/dashboard/CoordinatorContact.tsx similarity index 100% rename from app/src/components/dashboard/CoordinatorContact.tsx rename to frontend/src/components/dashboard/CoordinatorContact.tsx diff --git a/app/src/components/dashboard/DashboardTask.tsx b/frontend/src/components/dashboard/DashboardTask.tsx similarity index 100% rename from app/src/components/dashboard/DashboardTask.tsx rename to frontend/src/components/dashboard/DashboardTask.tsx diff --git a/app/src/components/dashboard/DashboardTaskAccordion.tsx b/frontend/src/components/dashboard/DashboardTaskAccordion.tsx similarity index 100% rename from app/src/components/dashboard/DashboardTaskAccordion.tsx rename to frontend/src/components/dashboard/DashboardTaskAccordion.tsx diff --git a/app/src/components/dashboard/__tests__/CoordinatorContact.test.tsx b/frontend/src/components/dashboard/__tests__/CoordinatorContact.test.tsx similarity index 100% rename from app/src/components/dashboard/__tests__/CoordinatorContact.test.tsx rename to frontend/src/components/dashboard/__tests__/CoordinatorContact.test.tsx diff --git a/app/src/components/dashboard/__tests__/DashboardTask.test.tsx b/frontend/src/components/dashboard/__tests__/DashboardTask.test.tsx similarity index 100% rename from app/src/components/dashboard/__tests__/DashboardTask.test.tsx rename to frontend/src/components/dashboard/__tests__/DashboardTask.test.tsx diff --git a/app/src/components/dashboard/__tests__/DashboardTaskAccordion.test.tsx b/frontend/src/components/dashboard/__tests__/DashboardTaskAccordion.test.tsx similarity index 100% rename from app/src/components/dashboard/__tests__/DashboardTaskAccordion.test.tsx rename to frontend/src/components/dashboard/__tests__/DashboardTaskAccordion.test.tsx diff --git a/app/src/components/dashboard/index.ts b/frontend/src/components/dashboard/index.ts similarity index 100% rename from app/src/components/dashboard/index.ts rename to frontend/src/components/dashboard/index.ts diff --git a/app/src/components/intake-profile/IntakeProfileGroups.tsx b/frontend/src/components/intake-profile/IntakeProfileGroups.tsx similarity index 100% rename from app/src/components/intake-profile/IntakeProfileGroups.tsx rename to frontend/src/components/intake-profile/IntakeProfileGroups.tsx diff --git a/app/src/components/intake-profile/ProfileReview.tsx b/frontend/src/components/intake-profile/ProfileReview.tsx similarity index 100% rename from app/src/components/intake-profile/ProfileReview.tsx rename to frontend/src/components/intake-profile/ProfileReview.tsx diff --git a/app/src/components/intake-profile/ProfileSidebar.tsx b/frontend/src/components/intake-profile/ProfileSidebar.tsx similarity index 100% rename from app/src/components/intake-profile/ProfileSidebar.tsx rename to frontend/src/components/intake-profile/ProfileSidebar.tsx diff --git a/app/src/components/intake-profile/SidebarButton.tsx b/frontend/src/components/intake-profile/SidebarButton.tsx similarity index 100% rename from app/src/components/intake-profile/SidebarButton.tsx rename to frontend/src/components/intake-profile/SidebarButton.tsx diff --git a/app/src/components/intake-profile/fields/AdditionaGuestsField.tsx b/frontend/src/components/intake-profile/fields/AdditionaGuestsField.tsx similarity index 100% rename from app/src/components/intake-profile/fields/AdditionaGuestsField.tsx rename to frontend/src/components/intake-profile/fields/AdditionaGuestsField.tsx diff --git a/app/src/components/intake-profile/fields/AdditionalPetsField.tsx b/frontend/src/components/intake-profile/fields/AdditionalPetsField.tsx similarity index 100% rename from app/src/components/intake-profile/fields/AdditionalPetsField.tsx rename to frontend/src/components/intake-profile/fields/AdditionalPetsField.tsx diff --git a/app/src/components/intake-profile/fields/DatePickerField.tsx b/frontend/src/components/intake-profile/fields/DatePickerField.tsx similarity index 100% rename from app/src/components/intake-profile/fields/DatePickerField.tsx rename to frontend/src/components/intake-profile/fields/DatePickerField.tsx diff --git a/app/src/components/intake-profile/hooks/useStatusStyling.tsx b/frontend/src/components/intake-profile/hooks/useStatusStyling.tsx similarity index 100% rename from app/src/components/intake-profile/hooks/useStatusStyling.tsx rename to frontend/src/components/intake-profile/hooks/useStatusStyling.tsx diff --git a/app/src/components/layout/CoordinatorDashboardLayout.tsx b/frontend/src/components/layout/CoordinatorDashboardLayout.tsx similarity index 100% rename from app/src/components/layout/CoordinatorDashboardLayout.tsx rename to frontend/src/components/layout/CoordinatorDashboardLayout.tsx diff --git a/app/src/components/layout/DashboardLayout.tsx b/frontend/src/components/layout/DashboardLayout.tsx similarity index 100% rename from app/src/components/layout/DashboardLayout.tsx rename to frontend/src/components/layout/DashboardLayout.tsx diff --git a/app/src/components/layout/GuestDashboardLayout.tsx b/frontend/src/components/layout/GuestDashboardLayout.tsx similarity index 100% rename from app/src/components/layout/GuestDashboardLayout.tsx rename to frontend/src/components/layout/GuestDashboardLayout.tsx diff --git a/app/src/components/layout/index.ts b/frontend/src/components/layout/index.ts similarity index 100% rename from app/src/components/layout/index.ts rename to frontend/src/components/layout/index.ts diff --git a/app/src/favicon.svg b/frontend/src/favicon.svg similarity index 100% rename from app/src/favicon.svg rename to frontend/src/favicon.svg diff --git a/app/src/img/admin-icon.svg b/frontend/src/img/admin-icon.svg similarity index 100% rename from app/src/img/admin-icon.svg rename to frontend/src/img/admin-icon.svg diff --git a/app/src/img/avatar.png b/frontend/src/img/avatar.png similarity index 100% rename from app/src/img/avatar.png rename to frontend/src/img/avatar.png diff --git a/app/src/img/favicon.png b/frontend/src/img/favicon.png similarity index 100% rename from app/src/img/favicon.png rename to frontend/src/img/favicon.png diff --git a/app/src/img/guest-icon.svg b/frontend/src/img/guest-icon.svg similarity index 100% rename from app/src/img/guest-icon.svg rename to frontend/src/img/guest-icon.svg diff --git a/app/src/img/host-icon.svg b/frontend/src/img/host-icon.svg similarity index 100% rename from app/src/img/host-icon.svg rename to frontend/src/img/host-icon.svg diff --git a/app/src/img/huu.svg b/frontend/src/img/huu.svg similarity index 100% rename from app/src/img/huu.svg rename to frontend/src/img/huu.svg diff --git a/app/src/img/spy.png b/frontend/src/img/spy.png similarity index 100% rename from app/src/img/spy.png rename to frontend/src/img/spy.png diff --git a/app/src/index.css b/frontend/src/index.css similarity index 100% rename from app/src/index.css rename to frontend/src/index.css diff --git a/app/src/logo.svg b/frontend/src/logo.svg similarity index 100% rename from app/src/logo.svg rename to frontend/src/logo.svg diff --git a/app/src/main.tsx b/frontend/src/main.tsx similarity index 100% rename from app/src/main.tsx rename to frontend/src/main.tsx diff --git a/app/src/services/api.ts b/frontend/src/services/api.ts similarity index 100% rename from app/src/services/api.ts rename to frontend/src/services/api.ts diff --git a/app/src/services/auth.ts b/frontend/src/services/auth.ts similarity index 100% rename from app/src/services/auth.ts rename to frontend/src/services/auth.ts diff --git a/app/src/services/coordinator.ts b/frontend/src/services/coordinator.ts similarity index 100% rename from app/src/services/coordinator.ts rename to frontend/src/services/coordinator.ts diff --git a/app/src/services/host.ts b/frontend/src/services/host.ts similarity index 100% rename from app/src/services/host.ts rename to frontend/src/services/host.ts diff --git a/app/src/services/profile.ts b/frontend/src/services/profile.ts similarity index 100% rename from app/src/services/profile.ts rename to frontend/src/services/profile.ts diff --git a/app/src/services/user.ts b/frontend/src/services/user.ts similarity index 100% rename from app/src/services/user.ts rename to frontend/src/services/user.ts diff --git a/app/src/theme/index.ts b/frontend/src/theme/index.ts similarity index 100% rename from app/src/theme/index.ts rename to frontend/src/theme/index.ts diff --git a/app/src/theme/overrides/Button.ts b/frontend/src/theme/overrides/Button.ts similarity index 100% rename from app/src/theme/overrides/Button.ts rename to frontend/src/theme/overrides/Button.ts diff --git a/app/src/theme/overrides/Divider.ts b/frontend/src/theme/overrides/Divider.ts similarity index 100% rename from app/src/theme/overrides/Divider.ts rename to frontend/src/theme/overrides/Divider.ts diff --git a/app/src/theme/overrides/InputLabel.ts b/frontend/src/theme/overrides/InputLabel.ts similarity index 100% rename from app/src/theme/overrides/InputLabel.ts rename to frontend/src/theme/overrides/InputLabel.ts diff --git a/app/src/theme/overrides/Link.tsx b/frontend/src/theme/overrides/Link.tsx similarity index 100% rename from app/src/theme/overrides/Link.tsx rename to frontend/src/theme/overrides/Link.tsx diff --git a/app/src/theme/overrides/OutlinedInput.ts b/frontend/src/theme/overrides/OutlinedInput.ts similarity index 100% rename from app/src/theme/overrides/OutlinedInput.ts rename to frontend/src/theme/overrides/OutlinedInput.ts diff --git a/app/src/theme/overrides/index.ts b/frontend/src/theme/overrides/index.ts similarity index 100% rename from app/src/theme/overrides/index.ts rename to frontend/src/theme/overrides/index.ts diff --git a/app/src/theme/theme.ts b/frontend/src/theme/theme.ts similarity index 100% rename from app/src/theme/theme.ts rename to frontend/src/theme/theme.ts diff --git a/app/src/types/index.d.ts b/frontend/src/types/index.d.ts similarity index 100% rename from app/src/types/index.d.ts rename to frontend/src/types/index.d.ts diff --git a/app/src/utils/PasswordValidationSchema.tsx b/frontend/src/utils/PasswordValidationSchema.tsx similarity index 100% rename from app/src/utils/PasswordValidationSchema.tsx rename to frontend/src/utils/PasswordValidationSchema.tsx diff --git a/app/src/utils/test/__mocks__/fileMock.ts b/frontend/src/utils/test/__mocks__/fileMock.ts similarity index 100% rename from app/src/utils/test/__mocks__/fileMock.ts rename to frontend/src/utils/test/__mocks__/fileMock.ts diff --git a/app/src/utils/test/browser.ts b/frontend/src/utils/test/browser.ts similarity index 100% rename from app/src/utils/test/browser.ts rename to frontend/src/utils/test/browser.ts diff --git a/app/src/utils/test/db/profile.ts b/frontend/src/utils/test/db/profile.ts similarity index 100% rename from app/src/utils/test/db/profile.ts rename to frontend/src/utils/test/db/profile.ts diff --git a/app/src/utils/test/handlers/auth.ts b/frontend/src/utils/test/handlers/auth.ts similarity index 100% rename from app/src/utils/test/handlers/auth.ts rename to frontend/src/utils/test/handlers/auth.ts diff --git a/app/src/utils/test/handlers/profile.ts b/frontend/src/utils/test/handlers/profile.ts similarity index 100% rename from app/src/utils/test/handlers/profile.ts rename to frontend/src/utils/test/handlers/profile.ts diff --git a/app/src/utils/test/server.ts b/frontend/src/utils/test/server.ts similarity index 100% rename from app/src/utils/test/server.ts rename to frontend/src/utils/test/server.ts diff --git a/app/src/utils/test/setupTests.ts b/frontend/src/utils/test/setupTests.ts similarity index 100% rename from app/src/utils/test/setupTests.ts rename to frontend/src/utils/test/setupTests.ts diff --git a/app/src/utils/test/test-utils.tsx b/frontend/src/utils/test/test-utils.tsx similarity index 100% rename from app/src/utils/test/test-utils.tsx rename to frontend/src/utils/test/test-utils.tsx diff --git a/app/src/views/AccountVerification.tsx b/frontend/src/views/AccountVerification.tsx similarity index 100% rename from app/src/views/AccountVerification.tsx rename to frontend/src/views/AccountVerification.tsx diff --git a/app/src/views/ConfirmSignUp.tsx b/frontend/src/views/ConfirmSignUp.tsx similarity index 100% rename from app/src/views/ConfirmSignUp.tsx rename to frontend/src/views/ConfirmSignUp.tsx diff --git a/app/src/views/CoordinatorDashboard.tsx b/frontend/src/views/CoordinatorDashboard.tsx similarity index 100% rename from app/src/views/CoordinatorDashboard.tsx rename to frontend/src/views/CoordinatorDashboard.tsx diff --git a/app/src/views/EmailVerificationError.tsx b/frontend/src/views/EmailVerificationError.tsx similarity index 100% rename from app/src/views/EmailVerificationError.tsx rename to frontend/src/views/EmailVerificationError.tsx diff --git a/app/src/views/EmailVerificationSuccess.tsx b/frontend/src/views/EmailVerificationSuccess.tsx similarity index 100% rename from app/src/views/EmailVerificationSuccess.tsx rename to frontend/src/views/EmailVerificationSuccess.tsx diff --git a/app/src/views/ForgotPassword.tsx b/frontend/src/views/ForgotPassword.tsx similarity index 100% rename from app/src/views/ForgotPassword.tsx rename to frontend/src/views/ForgotPassword.tsx diff --git a/app/src/views/ForgotPasswordCode.tsx b/frontend/src/views/ForgotPasswordCode.tsx similarity index 100% rename from app/src/views/ForgotPasswordCode.tsx rename to frontend/src/views/ForgotPasswordCode.tsx diff --git a/app/src/views/ForgotPasswordSuccess.tsx b/frontend/src/views/ForgotPasswordSuccess.tsx similarity index 100% rename from app/src/views/ForgotPasswordSuccess.tsx rename to frontend/src/views/ForgotPasswordSuccess.tsx diff --git a/app/src/views/GuestApplicationTracker.tsx b/frontend/src/views/GuestApplicationTracker.tsx similarity index 100% rename from app/src/views/GuestApplicationTracker.tsx rename to frontend/src/views/GuestApplicationTracker.tsx diff --git a/app/src/views/GuestContacts.tsx b/frontend/src/views/GuestContacts.tsx similarity index 100% rename from app/src/views/GuestContacts.tsx rename to frontend/src/views/GuestContacts.tsx diff --git a/app/src/views/GuestDocuments.tsx b/frontend/src/views/GuestDocuments.tsx similarity index 100% rename from app/src/views/GuestDocuments.tsx rename to frontend/src/views/GuestDocuments.tsx diff --git a/app/src/views/GuestSettings.tsx b/frontend/src/views/GuestSettings.tsx similarity index 100% rename from app/src/views/GuestSettings.tsx rename to frontend/src/views/GuestSettings.tsx diff --git a/app/src/views/GuestTasks.tsx b/frontend/src/views/GuestTasks.tsx similarity index 100% rename from app/src/views/GuestTasks.tsx rename to frontend/src/views/GuestTasks.tsx diff --git a/app/src/views/Home.tsx b/frontend/src/views/Home.tsx similarity index 100% rename from app/src/views/Home.tsx rename to frontend/src/views/Home.tsx diff --git a/app/src/views/HostApplicationTracker.tsx b/frontend/src/views/HostApplicationTracker.tsx similarity index 100% rename from app/src/views/HostApplicationTracker.tsx rename to frontend/src/views/HostApplicationTracker.tsx diff --git a/app/src/views/HostsList.tsx b/frontend/src/views/HostsList.tsx similarity index 100% rename from app/src/views/HostsList.tsx rename to frontend/src/views/HostsList.tsx diff --git a/app/src/views/IntakeProfile/constants/buildValidationSchema.ts b/frontend/src/views/IntakeProfile/constants/buildValidationSchema.ts similarity index 100% rename from app/src/views/IntakeProfile/constants/buildValidationSchema.ts rename to frontend/src/views/IntakeProfile/constants/buildValidationSchema.ts diff --git a/app/src/views/IntakeProfile/constants/createInitialValues.ts b/frontend/src/views/IntakeProfile/constants/createInitialValues.ts similarity index 100% rename from app/src/views/IntakeProfile/constants/createInitialValues.ts rename to frontend/src/views/IntakeProfile/constants/createInitialValues.ts diff --git a/app/src/views/IntakeProfile/constants/index.ts b/frontend/src/views/IntakeProfile/constants/index.ts similarity index 100% rename from app/src/views/IntakeProfile/constants/index.ts rename to frontend/src/views/IntakeProfile/constants/index.ts diff --git a/app/src/views/IntakeProfile/index.tsx b/frontend/src/views/IntakeProfile/index.tsx similarity index 100% rename from app/src/views/IntakeProfile/index.tsx rename to frontend/src/views/IntakeProfile/index.tsx diff --git a/app/src/views/LoadingComponent.tsx b/frontend/src/views/LoadingComponent.tsx similarity index 100% rename from app/src/views/LoadingComponent.tsx rename to frontend/src/views/LoadingComponent.tsx diff --git a/app/src/views/NewPassword.tsx b/frontend/src/views/NewPassword.tsx similarity index 100% rename from app/src/views/NewPassword.tsx rename to frontend/src/views/NewPassword.tsx diff --git a/app/src/views/ResetPassword.tsx b/frontend/src/views/ResetPassword.tsx similarity index 100% rename from app/src/views/ResetPassword.tsx rename to frontend/src/views/ResetPassword.tsx diff --git a/app/src/views/SelectAccountType.tsx b/frontend/src/views/SelectAccountType.tsx similarity index 100% rename from app/src/views/SelectAccountType.tsx rename to frontend/src/views/SelectAccountType.tsx diff --git a/app/src/views/Settings.tsx b/frontend/src/views/Settings.tsx similarity index 100% rename from app/src/views/Settings.tsx rename to frontend/src/views/Settings.tsx diff --git a/app/src/views/SignIn.tsx b/frontend/src/views/SignIn.tsx similarity index 100% rename from app/src/views/SignIn.tsx rename to frontend/src/views/SignIn.tsx diff --git a/app/src/views/SignUp.tsx b/frontend/src/views/SignUp.tsx similarity index 100% rename from app/src/views/SignUp.tsx rename to frontend/src/views/SignUp.tsx diff --git a/app/src/views/SystemAdminDashboard.tsx b/frontend/src/views/SystemAdminDashboard.tsx similarity index 100% rename from app/src/views/SystemAdminDashboard.tsx rename to frontend/src/views/SystemAdminDashboard.tsx diff --git a/app/src/views/__tests__/ForgotPasswordCode.test.tsx b/frontend/src/views/__tests__/ForgotPasswordCode.test.tsx similarity index 100% rename from app/src/views/__tests__/ForgotPasswordCode.test.tsx rename to frontend/src/views/__tests__/ForgotPasswordCode.test.tsx diff --git a/app/src/views/__tests__/ResetPassword.test.tsx b/frontend/src/views/__tests__/ResetPassword.test.tsx similarity index 100% rename from app/src/views/__tests__/ResetPassword.test.tsx rename to frontend/src/views/__tests__/ResetPassword.test.tsx diff --git a/app/src/views/index.ts b/frontend/src/views/index.ts similarity index 100% rename from app/src/views/index.ts rename to frontend/src/views/index.ts diff --git a/app/src/vite-env.d.ts b/frontend/src/vite-env.d.ts similarity index 100% rename from app/src/vite-env.d.ts rename to frontend/src/vite-env.d.ts diff --git a/app/static/landingpage.html b/frontend/static/landingpage.html similarity index 100% rename from app/static/landingpage.html rename to frontend/static/landingpage.html diff --git a/app/tsconfig.json b/frontend/tsconfig.json similarity index 100% rename from app/tsconfig.json rename to frontend/tsconfig.json diff --git a/app/tsconfig.node.json b/frontend/tsconfig.node.json similarity index 100% rename from app/tsconfig.node.json rename to frontend/tsconfig.node.json diff --git a/app/vite.config.ts b/frontend/vite.config.ts similarity index 100% rename from app/vite.config.ts rename to frontend/vite.config.ts