diff --git a/tenant-file/.firebaserc b/client/.firebaserc similarity index 100% rename from tenant-file/.firebaserc rename to client/.firebaserc diff --git a/tenant-file/.gitignore b/client/.gitignore similarity index 79% rename from tenant-file/.gitignore rename to client/.gitignore index f626852..588f5d6 100644 --- a/tenant-file/.gitignore +++ b/client/.gitignore @@ -1,9 +1,33 @@ -# Logs -logs -*.log +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/.pnp +.pnp.js + +# testing +coverage + +# production +/build + +# misc +.DS_Store +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + npm-debug.log* yarn-debug.log* yarn-error.log* + + +# Firebase Related ignores below + +# Logs +logs +*.log firebase-debug.log* # Firebase cache @@ -25,9 +49,6 @@ pids # Directory for instrumented libs generated by jscoverage/JSCover lib-cov -# Coverage directory used by tools like istanbul -coverage - # nyc test coverage .nyc_output @@ -60,6 +81,3 @@ node_modules/ # Yarn Integrity file .yarn-integrity - -# dotenv environment variables file -.env diff --git a/tenant-file/portal-app/README.md b/client/README.md similarity index 100% rename from tenant-file/portal-app/README.md rename to client/README.md diff --git a/tenant-file/portal-app/__generated__/globalTypes.ts b/client/__generated__/globalTypes.ts similarity index 100% rename from tenant-file/portal-app/__generated__/globalTypes.ts rename to client/__generated__/globalTypes.ts diff --git a/tenant-file/database.rules.json b/client/database.rules.json similarity index 100% rename from tenant-file/database.rules.json rename to client/database.rules.json diff --git a/tenant-file/firebase.json b/client/firebase.json similarity index 100% rename from tenant-file/firebase.json rename to client/firebase.json diff --git a/tenant-file/portal-app/graphql-schema.json b/client/graphql-schema.json similarity index 100% rename from tenant-file/portal-app/graphql-schema.json rename to client/graphql-schema.json diff --git a/tenant-file/portal-app/package-lock.json b/client/package-lock.json similarity index 100% rename from tenant-file/portal-app/package-lock.json rename to client/package-lock.json diff --git a/tenant-file/portal-app/package.json b/client/package.json similarity index 100% rename from tenant-file/portal-app/package.json rename to client/package.json diff --git a/tenant-file/portal-app/public/BASTA Logo_White.png b/client/public/BASTA Logo_White.png similarity index 100% rename from tenant-file/portal-app/public/BASTA Logo_White.png rename to client/public/BASTA Logo_White.png diff --git a/tenant-file/portal-app/public/favicon.ico b/client/public/favicon.ico similarity index 100% rename from tenant-file/portal-app/public/favicon.ico rename to client/public/favicon.ico diff --git a/tenant-file/portal-app/public/index.html b/client/public/index.html similarity index 100% rename from tenant-file/portal-app/public/index.html rename to client/public/index.html diff --git a/tenant-file/portal-app/public/logo192.png b/client/public/logo192.png similarity index 100% rename from tenant-file/portal-app/public/logo192.png rename to client/public/logo192.png diff --git a/tenant-file/portal-app/public/logo512.png b/client/public/logo512.png similarity index 100% rename from tenant-file/portal-app/public/logo512.png rename to client/public/logo512.png diff --git a/tenant-file/portal-app/public/manifest.json b/client/public/manifest.json similarity index 100% rename from tenant-file/portal-app/public/manifest.json rename to client/public/manifest.json diff --git a/tenant-file/portal-app/public/robots.txt b/client/public/robots.txt similarity index 100% rename from tenant-file/portal-app/public/robots.txt rename to client/public/robots.txt diff --git a/tenant-file/portal-app/src/App.css b/client/src/App.css similarity index 100% rename from tenant-file/portal-app/src/App.css rename to client/src/App.css diff --git a/tenant-file/portal-app/src/App.tsx b/client/src/App.tsx similarity index 100% rename from tenant-file/portal-app/src/App.tsx rename to client/src/App.tsx diff --git a/tenant-file/portal-app/src/component/__generated__/TenantListQuery.ts b/client/src/component/__generated__/TenantListQuery.ts similarity index 100% rename from tenant-file/portal-app/src/component/__generated__/TenantListQuery.ts rename to client/src/component/__generated__/TenantListQuery.ts diff --git a/tenant-file/portal-app/src/component/admin.tsx b/client/src/component/admin.tsx similarity index 100% rename from tenant-file/portal-app/src/component/admin.tsx rename to client/src/component/admin.tsx diff --git a/tenant-file/portal-app/src/component/app-logo-and-title.tsx b/client/src/component/app-logo-and-title.tsx similarity index 100% rename from tenant-file/portal-app/src/component/app-logo-and-title.tsx rename to client/src/component/app-logo-and-title.tsx diff --git a/tenant-file/portal-app/src/component/dashboard.tsx b/client/src/component/dashboard.tsx similarity index 100% rename from tenant-file/portal-app/src/component/dashboard.tsx rename to client/src/component/dashboard.tsx diff --git a/tenant-file/portal-app/src/component/display-images.tsx b/client/src/component/display-images.tsx similarity index 100% rename from tenant-file/portal-app/src/component/display-images.tsx rename to client/src/component/display-images.tsx diff --git a/tenant-file/portal-app/src/component/export-toolbar.tsx b/client/src/component/export-toolbar.tsx similarity index 100% rename from tenant-file/portal-app/src/component/export-toolbar.tsx rename to client/src/component/export-toolbar.tsx diff --git a/tenant-file/portal-app/src/component/firebase.tsx b/client/src/component/firebase.tsx similarity index 100% rename from tenant-file/portal-app/src/component/firebase.tsx rename to client/src/component/firebase.tsx diff --git a/tenant-file/portal-app/src/component/footer.tsx b/client/src/component/footer.tsx similarity index 100% rename from tenant-file/portal-app/src/component/footer.tsx rename to client/src/component/footer.tsx diff --git a/tenant-file/portal-app/src/component/home.tsx b/client/src/component/home.tsx similarity index 100% rename from tenant-file/portal-app/src/component/home.tsx rename to client/src/component/home.tsx diff --git a/tenant-file/portal-app/src/component/image.tsx b/client/src/component/image.tsx similarity index 100% rename from tenant-file/portal-app/src/component/image.tsx rename to client/src/component/image.tsx diff --git a/tenant-file/portal-app/src/component/layout.tsx b/client/src/component/layout.tsx similarity index 100% rename from tenant-file/portal-app/src/component/layout.tsx rename to client/src/component/layout.tsx diff --git a/tenant-file/portal-app/src/component/login.tsx b/client/src/component/login.tsx similarity index 100% rename from tenant-file/portal-app/src/component/login.tsx rename to client/src/component/login.tsx diff --git a/tenant-file/portal-app/src/component/name-search.tsx b/client/src/component/name-search.tsx similarity index 100% rename from tenant-file/portal-app/src/component/name-search.tsx rename to client/src/component/name-search.tsx diff --git a/tenant-file/portal-app/src/component/nav.tsx b/client/src/component/nav.tsx similarity index 100% rename from tenant-file/portal-app/src/component/nav.tsx rename to client/src/component/nav.tsx diff --git a/tenant-file/portal-app/src/component/private-route.tsx b/client/src/component/private-route.tsx similarity index 100% rename from tenant-file/portal-app/src/component/private-route.tsx rename to client/src/component/private-route.tsx diff --git a/tenant-file/portal-app/src/component/properties.tsx b/client/src/component/properties.tsx similarity index 100% rename from tenant-file/portal-app/src/component/properties.tsx rename to client/src/component/properties.tsx diff --git a/tenant-file/portal-app/src/component/property-form.tsx b/client/src/component/property-form.tsx similarity index 100% rename from tenant-file/portal-app/src/component/property-form.tsx rename to client/src/component/property-form.tsx diff --git a/tenant-file/portal-app/src/component/sidebar.tsx b/client/src/component/sidebar.tsx similarity index 100% rename from tenant-file/portal-app/src/component/sidebar.tsx rename to client/src/component/sidebar.tsx diff --git a/tenant-file/portal-app/src/component/styles/ExportToolbarStyles.tsx b/client/src/component/styles/ExportToolbarStyles.tsx similarity index 100% rename from tenant-file/portal-app/src/component/styles/ExportToolbarStyles.tsx rename to client/src/component/styles/ExportToolbarStyles.tsx diff --git a/tenant-file/portal-app/src/component/styles/FooterStyles.tsx b/client/src/component/styles/FooterStyles.tsx similarity index 100% rename from tenant-file/portal-app/src/component/styles/FooterStyles.tsx rename to client/src/component/styles/FooterStyles.tsx diff --git a/tenant-file/portal-app/src/component/styles/NavStyles.tsx b/client/src/component/styles/NavStyles.tsx similarity index 100% rename from tenant-file/portal-app/src/component/styles/NavStyles.tsx rename to client/src/component/styles/NavStyles.tsx diff --git a/tenant-file/portal-app/src/component/styles/SidebarStyles.tsx b/client/src/component/styles/SidebarStyles.tsx similarity index 100% rename from tenant-file/portal-app/src/component/styles/SidebarStyles.tsx rename to client/src/component/styles/SidebarStyles.tsx diff --git a/tenant-file/portal-app/src/component/styles/themes.tsx b/client/src/component/styles/themes.tsx similarity index 100% rename from tenant-file/portal-app/src/component/styles/themes.tsx rename to client/src/component/styles/themes.tsx diff --git a/tenant-file/portal-app/src/component/tenant-details.tsx b/client/src/component/tenant-details.tsx similarity index 100% rename from tenant-file/portal-app/src/component/tenant-details.tsx rename to client/src/component/tenant-details.tsx diff --git a/tenant-file/portal-app/src/component/tenant-list.tsx b/client/src/component/tenant-list.tsx similarity index 100% rename from tenant-file/portal-app/src/component/tenant-list.tsx rename to client/src/component/tenant-list.tsx diff --git a/tenant-file/portal-app/src/component/tenant-table-collapse.tsx b/client/src/component/tenant-table-collapse.tsx similarity index 100% rename from tenant-file/portal-app/src/component/tenant-table-collapse.tsx rename to client/src/component/tenant-table-collapse.tsx diff --git a/tenant-file/portal-app/src/images/bars.svg b/client/src/images/bars.svg similarity index 100% rename from tenant-file/portal-app/src/images/bars.svg rename to client/src/images/bars.svg diff --git a/tenant-file/portal-app/src/images/bastaaustin.png b/client/src/images/bastaaustin.png similarity index 100% rename from tenant-file/portal-app/src/images/bastaaustin.png rename to client/src/images/bastaaustin.png diff --git a/tenant-file/portal-app/src/images/logo.svg b/client/src/images/logo.svg similarity index 100% rename from tenant-file/portal-app/src/images/logo.svg rename to client/src/images/logo.svg diff --git a/tenant-file/portal-app/src/images/tools-logo.svg b/client/src/images/tools-logo.svg similarity index 100% rename from tenant-file/portal-app/src/images/tools-logo.svg rename to client/src/images/tools-logo.svg diff --git a/tenant-file/portal-app/src/index.css b/client/src/index.css similarity index 100% rename from tenant-file/portal-app/src/index.css rename to client/src/index.css diff --git a/tenant-file/portal-app/src/index.tsx b/client/src/index.tsx similarity index 100% rename from tenant-file/portal-app/src/index.tsx rename to client/src/index.tsx diff --git a/tenant-file/portal-app/src/react-app-env.d.ts b/client/src/react-app-env.d.ts similarity index 100% rename from tenant-file/portal-app/src/react-app-env.d.ts rename to client/src/react-app-env.d.ts diff --git a/tenant-file/portal-app/src/serviceWorker.ts b/client/src/serviceWorker.ts similarity index 100% rename from tenant-file/portal-app/src/serviceWorker.ts rename to client/src/serviceWorker.ts diff --git a/tenant-file/portal-app/src/setupTests.ts b/client/src/setupTests.ts similarity index 100% rename from tenant-file/portal-app/src/setupTests.ts rename to client/src/setupTests.ts diff --git a/tenant-file/portal-app/src/store/auth.ts b/client/src/store/auth.ts similarity index 100% rename from tenant-file/portal-app/src/store/auth.ts rename to client/src/store/auth.ts diff --git a/tenant-file/portal-app/src/store/store.ts b/client/src/store/store.ts similarity index 100% rename from tenant-file/portal-app/src/store/store.ts rename to client/src/store/store.ts diff --git a/tenant-file/storage.rules b/client/storage.rules similarity index 100% rename from tenant-file/storage.rules rename to client/storage.rules diff --git a/tenant-file/portal-app/tsconfig.json b/client/tsconfig.json similarity index 100% rename from tenant-file/portal-app/tsconfig.json rename to client/tsconfig.json diff --git a/TenantFile/.gitignore b/server/.gitignore similarity index 100% rename from TenantFile/.gitignore rename to server/.gitignore diff --git a/TenantFile/Api.UnitTests/Api.UnitTests.csproj b/server/Api.UnitTests/Api.UnitTests.csproj similarity index 100% rename from TenantFile/Api.UnitTests/Api.UnitTests.csproj rename to server/Api.UnitTests/Api.UnitTests.csproj diff --git a/TenantFile/Api.UnitTests/SmsControllerTests.cs b/server/Api.UnitTests/SmsControllerTests.cs similarity index 100% rename from TenantFile/Api.UnitTests/SmsControllerTests.cs rename to server/Api.UnitTests/SmsControllerTests.cs diff --git a/TenantFile/Api/.config/dotnet-tools.json b/server/Api/.config/dotnet-tools.json similarity index 100% rename from TenantFile/Api/.config/dotnet-tools.json rename to server/Api/.config/dotnet-tools.json diff --git a/TenantFile/Api/.dockerignore b/server/Api/.dockerignore similarity index 100% rename from TenantFile/Api/.dockerignore rename to server/Api/.dockerignore diff --git a/TenantFile/Api/.gcloudignore b/server/Api/.gcloudignore similarity index 100% rename from TenantFile/Api/.gcloudignore rename to server/Api/.gcloudignore diff --git a/TenantFile/Api/Common/IEntity.cs b/server/Api/Common/IEntity.cs similarity index 100% rename from TenantFile/Api/Common/IEntity.cs rename to server/Api/Common/IEntity.cs diff --git a/TenantFile/Api/Common/Payload.cs b/server/Api/Common/Payload.cs similarity index 100% rename from TenantFile/Api/Common/Payload.cs rename to server/Api/Common/Payload.cs diff --git a/TenantFile/Api/Common/TPayload.cs b/server/Api/Common/TPayload.cs similarity index 100% rename from TenantFile/Api/Common/TPayload.cs rename to server/Api/Common/TPayload.cs diff --git a/TenantFile/Api/Common/UserError.cs b/server/Api/Common/UserError.cs similarity index 100% rename from TenantFile/Api/Common/UserError.cs rename to server/Api/Common/UserError.cs diff --git a/TenantFile/Api/Controllers/ImageController.cs b/server/Api/Controllers/ImageController.cs similarity index 100% rename from TenantFile/Api/Controllers/ImageController.cs rename to server/Api/Controllers/ImageController.cs diff --git a/TenantFile/Api/Controllers/OrganizerController.cs b/server/Api/Controllers/OrganizerController.cs similarity index 100% rename from TenantFile/Api/Controllers/OrganizerController.cs rename to server/Api/Controllers/OrganizerController.cs diff --git a/TenantFile/Api/Controllers/SmsController.cs b/server/Api/Controllers/SmsController.cs similarity index 100% rename from TenantFile/Api/Controllers/SmsController.cs rename to server/Api/Controllers/SmsController.cs diff --git a/TenantFile/Api/Controllers/UserController.cs b/server/Api/Controllers/UserController.cs similarity index 100% rename from TenantFile/Api/Controllers/UserController.cs rename to server/Api/Controllers/UserController.cs diff --git a/TenantFile/Api/DataLoader/AddressByIdDataLoader.cs b/server/Api/DataLoader/AddressByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/AddressByIdDataLoader.cs rename to server/Api/DataLoader/AddressByIdDataLoader.cs diff --git a/TenantFile/Api/DataLoader/DataLoaderById.cs b/server/Api/DataLoader/DataLoaderById.cs similarity index 100% rename from TenantFile/Api/DataLoader/DataLoaderById.cs rename to server/Api/DataLoader/DataLoaderById.cs diff --git a/TenantFile/Api/DataLoader/DataLoaderFactory.cs b/server/Api/DataLoader/DataLoaderFactory.cs similarity index 100% rename from TenantFile/Api/DataLoader/DataLoaderFactory.cs rename to server/Api/DataLoader/DataLoaderFactory.cs diff --git a/TenantFile/Api/DataLoader/ImageByIdDataLoader.cs b/server/Api/DataLoader/ImageByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/ImageByIdDataLoader.cs rename to server/Api/DataLoader/ImageByIdDataLoader.cs diff --git a/TenantFile/Api/DataLoader/PhoneByIdDataLoader.cs b/server/Api/DataLoader/PhoneByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/PhoneByIdDataLoader.cs rename to server/Api/DataLoader/PhoneByIdDataLoader.cs diff --git a/TenantFile/Api/DataLoader/PropertyByIdDataLoader.cs b/server/Api/DataLoader/PropertyByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/PropertyByIdDataLoader.cs rename to server/Api/DataLoader/PropertyByIdDataLoader.cs diff --git a/TenantFile/Api/DataLoader/ResidenceByIdDataLoader.cs b/server/Api/DataLoader/ResidenceByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/ResidenceByIdDataLoader.cs rename to server/Api/DataLoader/ResidenceByIdDataLoader.cs diff --git a/TenantFile/Api/DataLoader/TenantByIdDataLoader.cs b/server/Api/DataLoader/TenantByIdDataLoader.cs similarity index 100% rename from TenantFile/Api/DataLoader/TenantByIdDataLoader.cs rename to server/Api/DataLoader/TenantByIdDataLoader.cs diff --git a/TenantFile/Api/Dockerfile b/server/Api/Dockerfile similarity index 100% rename from TenantFile/Api/Dockerfile rename to server/Api/Dockerfile diff --git a/TenantFile/Api/Extensions/ObjectFieldDescriptorExtensions.cs b/server/Api/Extensions/ObjectFieldDescriptorExtensions.cs similarity index 100% rename from TenantFile/Api/Extensions/ObjectFieldDescriptorExtensions.cs rename to server/Api/Extensions/ObjectFieldDescriptorExtensions.cs diff --git a/TenantFile/Api/Extensions/UseTenantFileContextAttribute.cs b/server/Api/Extensions/UseTenantFileContextAttribute.cs similarity index 100% rename from TenantFile/Api/Extensions/UseTenantFileContextAttribute.cs rename to server/Api/Extensions/UseTenantFileContextAttribute.cs diff --git a/TenantFile/Api/Migrations/20201004183758_InitialCreate.Designer.cs b/server/Api/Migrations/20201004183758_InitialCreate.Designer.cs similarity index 100% rename from TenantFile/Api/Migrations/20201004183758_InitialCreate.Designer.cs rename to server/Api/Migrations/20201004183758_InitialCreate.Designer.cs diff --git a/TenantFile/Api/Migrations/20201004183758_InitialCreate.cs b/server/Api/Migrations/20201004183758_InitialCreate.cs similarity index 100% rename from TenantFile/Api/Migrations/20201004183758_InitialCreate.cs rename to server/Api/Migrations/20201004183758_InitialCreate.cs diff --git a/TenantFile/Api/Migrations/20201218145455_Initial.Designer.cs b/server/Api/Migrations/20201218145455_Initial.Designer.cs similarity index 100% rename from TenantFile/Api/Migrations/20201218145455_Initial.Designer.cs rename to server/Api/Migrations/20201218145455_Initial.Designer.cs diff --git a/TenantFile/Api/Migrations/20201218145455_Initial.cs b/server/Api/Migrations/20201218145455_Initial.cs similarity index 100% rename from TenantFile/Api/Migrations/20201218145455_Initial.cs rename to server/Api/Migrations/20201218145455_Initial.cs diff --git a/TenantFile/Api/Migrations/TenantContextModelSnapshot.cs b/server/Api/Migrations/TenantContextModelSnapshot.cs similarity index 100% rename from TenantFile/Api/Migrations/TenantContextModelSnapshot.cs rename to server/Api/Migrations/TenantContextModelSnapshot.cs diff --git a/TenantFile/Api/Migrations/TenantFileContextModelSnapshot.cs b/server/Api/Migrations/TenantFileContextModelSnapshot.cs similarity index 100% rename from TenantFile/Api/Migrations/TenantFileContextModelSnapshot.cs rename to server/Api/Migrations/TenantFileContextModelSnapshot.cs diff --git a/TenantFile/Api/Models/Claims.cs b/server/Api/Models/Claims.cs similarity index 100% rename from TenantFile/Api/Models/Claims.cs rename to server/Api/Models/Claims.cs diff --git a/TenantFile/Api/Models/Entities/Address.cs b/server/Api/Models/Entities/Address.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Address.cs rename to server/Api/Models/Entities/Address.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/AddressConfiguration.cs b/server/Api/Models/Entities/Configurations/AddressConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/AddressConfiguration.cs rename to server/Api/Models/Entities/Configurations/AddressConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/ImageConfiguration.cs b/server/Api/Models/Entities/Configurations/ImageConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/ImageConfiguration.cs rename to server/Api/Models/Entities/Configurations/ImageConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/OrganizerConfiguration.cs b/server/Api/Models/Entities/Configurations/OrganizerConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/OrganizerConfiguration.cs rename to server/Api/Models/Entities/Configurations/OrganizerConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/PhoneConfiguration.cs b/server/Api/Models/Entities/Configurations/PhoneConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/PhoneConfiguration.cs rename to server/Api/Models/Entities/Configurations/PhoneConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/PropertyConfiguration.cs b/server/Api/Models/Entities/Configurations/PropertyConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/PropertyConfiguration.cs rename to server/Api/Models/Entities/Configurations/PropertyConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/ResidenceConfiguration.cs b/server/Api/Models/Entities/Configurations/ResidenceConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/ResidenceConfiguration.cs rename to server/Api/Models/Entities/Configurations/ResidenceConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/ResidenceRecordConfiguration.cs b/server/Api/Models/Entities/Configurations/ResidenceRecordConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/ResidenceRecordConfiguration.cs rename to server/Api/Models/Entities/Configurations/ResidenceRecordConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Configurations/TenantConfiguration.cs b/server/Api/Models/Entities/Configurations/TenantConfiguration.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Configurations/TenantConfiguration.cs rename to server/Api/Models/Entities/Configurations/TenantConfiguration.cs diff --git a/TenantFile/Api/Models/Entities/Image.cs b/server/Api/Models/Entities/Image.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Image.cs rename to server/Api/Models/Entities/Image.cs diff --git a/TenantFile/Api/Models/Entities/ImageLabel.cs b/server/Api/Models/Entities/ImageLabel.cs similarity index 100% rename from TenantFile/Api/Models/Entities/ImageLabel.cs rename to server/Api/Models/Entities/ImageLabel.cs diff --git a/TenantFile/Api/Models/Entities/Organizer.cs b/server/Api/Models/Entities/Organizer.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Organizer.cs rename to server/Api/Models/Entities/Organizer.cs diff --git a/TenantFile/Api/Models/Entities/Phone.cs b/server/Api/Models/Entities/Phone.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Phone.cs rename to server/Api/Models/Entities/Phone.cs diff --git a/TenantFile/Api/Models/Entities/Property.cs b/server/Api/Models/Entities/Property.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Property.cs rename to server/Api/Models/Entities/Property.cs diff --git a/TenantFile/Api/Models/Entities/Residence.cs b/server/Api/Models/Entities/Residence.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Residence.cs rename to server/Api/Models/Entities/Residence.cs diff --git a/TenantFile/Api/Models/Entities/ResidenceRecord.cs b/server/Api/Models/Entities/ResidenceRecord.cs similarity index 100% rename from TenantFile/Api/Models/Entities/ResidenceRecord.cs rename to server/Api/Models/Entities/ResidenceRecord.cs diff --git a/TenantFile/Api/Models/Entities/Tenant.cs b/server/Api/Models/Entities/Tenant.cs similarity index 100% rename from TenantFile/Api/Models/Entities/Tenant.cs rename to server/Api/Models/Entities/Tenant.cs diff --git a/TenantFile/Api/Models/GraphQL/Addresses/AddressFilterInputType.cs b/server/Api/Models/GraphQL/Addresses/AddressFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Addresses/AddressFilterInputType.cs rename to server/Api/Models/GraphQL/Addresses/AddressFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Addresses/AddressQueries.cs b/server/Api/Models/GraphQL/Addresses/AddressQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Addresses/AddressQueries.cs rename to server/Api/Models/GraphQL/Addresses/AddressQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Addresses/AddressType.cs b/server/Api/Models/GraphQL/Addresses/AddressType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Addresses/AddressType.cs rename to server/Api/Models/GraphQL/Addresses/AddressType.cs diff --git a/TenantFile/Api/Models/GraphQL/Addresses/CreateAddressInput.cs b/server/Api/Models/GraphQL/Addresses/CreateAddressInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Addresses/CreateAddressInput.cs rename to server/Api/Models/GraphQL/Addresses/CreateAddressInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/AddImageInput.cs b/server/Api/Models/GraphQL/Images/AddImageInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/AddImageInput.cs rename to server/Api/Models/GraphQL/Images/AddImageInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/AddImagePayload.cs b/server/Api/Models/GraphQL/Images/AddImagePayload.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/AddImagePayload.cs rename to server/Api/Models/GraphQL/Images/AddImagePayload.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/ImageFilterInputType.cs b/server/Api/Models/GraphQL/Images/ImageFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/ImageFilterInputType.cs rename to server/Api/Models/GraphQL/Images/ImageFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/ImageMutations.cs b/server/Api/Models/GraphQL/Images/ImageMutations.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/ImageMutations.cs rename to server/Api/Models/GraphQL/Images/ImageMutations.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/ImageQueries.cs b/server/Api/Models/GraphQL/Images/ImageQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/ImageQueries.cs rename to server/Api/Models/GraphQL/Images/ImageQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Images/ImageType.cs b/server/Api/Models/GraphQL/Images/ImageType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Images/ImageType.cs rename to server/Api/Models/GraphQL/Images/ImageType.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/CreatePhoneInput.cs b/server/Api/Models/GraphQL/Phones/CreatePhoneInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/CreatePhoneInput.cs rename to server/Api/Models/GraphQL/Phones/CreatePhoneInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/CreatePhonePayload.cs b/server/Api/Models/GraphQL/Phones/CreatePhonePayload.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/CreatePhonePayload.cs rename to server/Api/Models/GraphQL/Phones/CreatePhonePayload.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/PhoneFilterInputType.cs b/server/Api/Models/GraphQL/Phones/PhoneFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/PhoneFilterInputType.cs rename to server/Api/Models/GraphQL/Phones/PhoneFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/PhoneMutations.cs b/server/Api/Models/GraphQL/Phones/PhoneMutations.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/PhoneMutations.cs rename to server/Api/Models/GraphQL/Phones/PhoneMutations.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/PhoneQueries.cs b/server/Api/Models/GraphQL/Phones/PhoneQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/PhoneQueries.cs rename to server/Api/Models/GraphQL/Phones/PhoneQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/PhoneSubscriptions.cs b/server/Api/Models/GraphQL/Phones/PhoneSubscriptions.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/PhoneSubscriptions.cs rename to server/Api/Models/GraphQL/Phones/PhoneSubscriptions.cs diff --git a/TenantFile/Api/Models/GraphQL/Phones/PhoneType.cs b/server/Api/Models/GraphQL/Phones/PhoneType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Phones/PhoneType.cs rename to server/Api/Models/GraphQL/Phones/PhoneType.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/CreatePropertyInput.cs b/server/Api/Models/GraphQL/Properties/CreatePropertyInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/CreatePropertyInput.cs rename to server/Api/Models/GraphQL/Properties/CreatePropertyInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/CreatePropertyPayload.cs b/server/Api/Models/GraphQL/Properties/CreatePropertyPayload.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/CreatePropertyPayload.cs rename to server/Api/Models/GraphQL/Properties/CreatePropertyPayload.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/PropertyFilterInputType.cs b/server/Api/Models/GraphQL/Properties/PropertyFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/PropertyFilterInputType.cs rename to server/Api/Models/GraphQL/Properties/PropertyFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/PropertyMutations.cs b/server/Api/Models/GraphQL/Properties/PropertyMutations.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/PropertyMutations.cs rename to server/Api/Models/GraphQL/Properties/PropertyMutations.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/PropertyQueries.cs b/server/Api/Models/GraphQL/Properties/PropertyQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/PropertyQueries.cs rename to server/Api/Models/GraphQL/Properties/PropertyQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Properties/PropertyType.cs b/server/Api/Models/GraphQL/Properties/PropertyType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Properties/PropertyType.cs rename to server/Api/Models/GraphQL/Properties/PropertyType.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/CreateResidenceInput.cs b/server/Api/Models/GraphQL/Residences/CreateResidenceInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/CreateResidenceInput.cs rename to server/Api/Models/GraphQL/Residences/CreateResidenceInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/CreateResidencePayload.cs b/server/Api/Models/GraphQL/Residences/CreateResidencePayload.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/CreateResidencePayload.cs rename to server/Api/Models/GraphQL/Residences/CreateResidencePayload.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/ResidenceFilterInputType.cs b/server/Api/Models/GraphQL/Residences/ResidenceFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/ResidenceFilterInputType.cs rename to server/Api/Models/GraphQL/Residences/ResidenceFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/ResidenceMutations.cs b/server/Api/Models/GraphQL/Residences/ResidenceMutations.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/ResidenceMutations.cs rename to server/Api/Models/GraphQL/Residences/ResidenceMutations.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/ResidenceQueries.cs b/server/Api/Models/GraphQL/Residences/ResidenceQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/ResidenceQueries.cs rename to server/Api/Models/GraphQL/Residences/ResidenceQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Residences/ResidenceType.cs b/server/Api/Models/GraphQL/Residences/ResidenceType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Residences/ResidenceType.cs rename to server/Api/Models/GraphQL/Residences/ResidenceType.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/CreateTenantInput.cs b/server/Api/Models/GraphQL/Tenants/CreateTenantInput.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/CreateTenantInput.cs rename to server/Api/Models/GraphQL/Tenants/CreateTenantInput.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/CreateTenantPayload.cs b/server/Api/Models/GraphQL/Tenants/CreateTenantPayload.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/CreateTenantPayload.cs rename to server/Api/Models/GraphQL/Tenants/CreateTenantPayload.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/TenantFilterInputType.cs b/server/Api/Models/GraphQL/Tenants/TenantFilterInputType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/TenantFilterInputType.cs rename to server/Api/Models/GraphQL/Tenants/TenantFilterInputType.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/TenantMutations.cs b/server/Api/Models/GraphQL/Tenants/TenantMutations.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/TenantMutations.cs rename to server/Api/Models/GraphQL/Tenants/TenantMutations.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/TenantQueries.cs b/server/Api/Models/GraphQL/Tenants/TenantQueries.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/TenantQueries.cs rename to server/Api/Models/GraphQL/Tenants/TenantQueries.cs diff --git a/TenantFile/Api/Models/GraphQL/Tenants/TenantType.cs b/server/Api/Models/GraphQL/Tenants/TenantType.cs similarity index 100% rename from TenantFile/Api/Models/GraphQL/Tenants/TenantType.cs rename to server/Api/Models/GraphQL/Tenants/TenantType.cs diff --git a/TenantFile/Api/Models/ImageListResult.cs b/server/Api/Models/ImageListResult.cs similarity index 100% rename from TenantFile/Api/Models/ImageListResult.cs rename to server/Api/Models/ImageListResult.cs diff --git a/TenantFile/Api/Models/TenantFileContext.cs b/server/Api/Models/TenantFileContext.cs similarity index 100% rename from TenantFile/Api/Models/TenantFileContext.cs rename to server/Api/Models/TenantFileContext.cs diff --git a/TenantFile/Api/Models/UserData.cs b/server/Api/Models/UserData.cs similarity index 100% rename from TenantFile/Api/Models/UserData.cs rename to server/Api/Models/UserData.cs diff --git a/TenantFile/Api/Models/UserListResult.cs b/server/Api/Models/UserListResult.cs similarity index 100% rename from TenantFile/Api/Models/UserListResult.cs rename to server/Api/Models/UserListResult.cs diff --git a/TenantFile/Api/Program.cs b/server/Api/Program.cs similarity index 100% rename from TenantFile/Api/Program.cs rename to server/Api/Program.cs diff --git a/TenantFile/Api/Properties/launchSettings.json b/server/Api/Properties/launchSettings.json similarity index 100% rename from TenantFile/Api/Properties/launchSettings.json rename to server/Api/Properties/launchSettings.json diff --git a/TenantFile/Api/Services/AddressVerificationService.cs b/server/Api/Services/AddressVerificationService.cs similarity index 100% rename from TenantFile/Api/Services/AddressVerificationService.cs rename to server/Api/Services/AddressVerificationService.cs diff --git a/TenantFile/Api/Services/GoogleCloudStorage.cs b/server/Api/Services/GoogleCloudStorage.cs similarity index 100% rename from TenantFile/Api/Services/GoogleCloudStorage.cs rename to server/Api/Services/GoogleCloudStorage.cs diff --git a/TenantFile/Api/Services/ICloudStorage.cs b/server/Api/Services/ICloudStorage.cs similarity index 100% rename from TenantFile/Api/Services/ICloudStorage.cs rename to server/Api/Services/ICloudStorage.cs diff --git a/TenantFile/Api/Startup.cs b/server/Api/Startup.cs similarity index 100% rename from TenantFile/Api/Startup.cs rename to server/Api/Startup.cs diff --git a/TenantFile/Api/TenantFile.Api.csproj b/server/Api/TenantFile.Api.csproj similarity index 100% rename from TenantFile/Api/TenantFile.Api.csproj rename to server/Api/TenantFile.Api.csproj diff --git a/TenantFile/Api/appsettings.Development.json b/server/Api/appsettings.Development.json similarity index 100% rename from TenantFile/Api/appsettings.Development.json rename to server/Api/appsettings.Development.json diff --git a/TenantFile/Api/appsettings.json b/server/Api/appsettings.json similarity index 100% rename from TenantFile/Api/appsettings.json rename to server/Api/appsettings.json diff --git a/TenantFile/Api/upload.sh b/server/Api/upload.sh similarity index 100% rename from TenantFile/Api/upload.sh rename to server/Api/upload.sh diff --git a/TenantFile/TenantFile.sln b/server/TenantFile.sln similarity index 100% rename from TenantFile/TenantFile.sln rename to server/TenantFile.sln diff --git a/tenant-file/portal-app/.gitignore b/tenant-file/portal-app/.gitignore deleted file mode 100644 index 4d29575..0000000 --- a/tenant-file/portal-app/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log*