├── .github ├── dependabot.yml └── workflows │ ├── app1-build-and-deploy-client.yml.disabled │ ├── app1-build-and-deploy-server.yml.disabled │ ├── app2-build-and-deploy-client.yml.disabled │ ├── app2-build-and-deploy-server.yml.disabled │ └── app2-sonar-cloud-scan.yml.disabled ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Readme.md ├── app1 ├── Readme-postgresql.md ├── Readme.md ├── app │ ├── client │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile.dev │ │ ├── Dockerfile.prod │ │ ├── nginx.conf │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── schema.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── sections │ │ │ │ ├── Listings │ │ │ │ │ ├── Listings.tsx │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ ├── DeleteListing.ts │ │ │ │ │ │ └── Listings.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ListingsSkeleton │ │ │ │ │ │ │ ├── ListingsSkeleton.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ │ └── ListingsSkeleton.css │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles │ │ │ │ │ │ └── Listings.css │ │ │ │ └── index.ts │ │ │ └── styles │ │ │ │ └── index.css │ │ └── tsconfig.json │ └── server │ │ ├── mongodb │ │ ├── .dockerignore │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── package.json │ │ ├── seed │ │ │ └── seed.ts │ │ ├── src │ │ │ ├── database │ │ │ │ └── index.ts │ │ │ ├── graphql │ │ │ │ ├── index.ts │ │ │ │ ├── resolvers │ │ │ │ │ ├── Listing │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── typeDefs.ts │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── types.ts │ │ └── tsconfig.json │ │ └── postgresql │ │ ├── .dockerignore │ │ ├── .env │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── ormconfig.json │ │ ├── package.json │ │ ├── seed │ │ └── seed.ts │ │ ├── src │ │ ├── database │ │ │ ├── entity │ │ │ │ ├── ListingEntity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── graphql │ │ │ ├── index.ts │ │ │ ├── resolvers │ │ │ │ ├── Listing │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── typeDefs.ts │ │ ├── index.ts │ │ └── lib │ │ │ └── types.ts │ │ └── tsconfig.json ├── k8s │ ├── client-clusterIP.yaml │ ├── client-deployment.yaml │ ├── ingress-config.yaml │ ├── mongo-clusterIP.yaml │ ├── mongo-deployment.yaml │ ├── server-clusterIP.yaml │ └── server-deployment.yaml └── skaffold │ └── skaffold.yaml ├── app2 ├── Development.md ├── Readme-postgresql.md ├── Readme.md ├── app │ ├── client │ │ ├── .dockerignore │ │ ├── .env │ │ ├── .gitignore │ │ ├── Dockerfile.dev │ │ ├── Dockerfile.prod │ │ ├── apollo.config.js │ │ ├── nginx.conf │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── schema.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── lib │ │ │ │ ├── components │ │ │ │ │ ├── AppHeaderSkeleton │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── tinyhouse-logo.png │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ErrorBanner │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ListingCard │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PageSkeleton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── graphql │ │ │ │ │ ├── globalTypes.ts │ │ │ │ │ ├── mutations │ │ │ │ │ │ ├── ConnectStripe │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── ConnectStripe.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── CreateBooking │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── CreateBooking.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── DisconnectStripe │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── DisconnectStripe.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── HostListing │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── HostListing.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── LogIn │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── LogIn.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── LogOut │ │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ │ └── LogOut.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── queries │ │ │ │ │ │ ├── AuthUrl │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ └── AuthUrl.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── Listing │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ └── Listing.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── Listings │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ └── Listings.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── User │ │ │ │ │ │ ├── __generated__ │ │ │ │ │ │ │ └── User.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useScrollToTop │ │ │ │ │ │ └── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ └── index.ts │ │ │ ├── react-app-env.d.ts │ │ │ ├── sections │ │ │ │ ├── AppHeader │ │ │ │ │ ├── assets │ │ │ │ │ │ └── tinyhouse-logo.png │ │ │ │ │ ├── components │ │ │ │ │ │ ├── MenuItems │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Home │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── cancun.jpg │ │ │ │ │ │ ├── dubai.jpg │ │ │ │ │ │ ├── listing-loading-card-cover.jpg │ │ │ │ │ │ ├── london.jpg │ │ │ │ │ │ ├── los-angeles.jpg │ │ │ │ │ │ ├── map-background.jpg │ │ │ │ │ │ ├── san-fransisco.jpg │ │ │ │ │ │ └── toronto.jpg │ │ │ │ │ ├── components │ │ │ │ │ │ ├── HomeHero │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── HomeListings │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── HomeListingsSkeleton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Host │ │ │ │ │ └── index.tsx │ │ │ │ ├── Listing │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ListingBookings │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ListingCreateBooking │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── ListingCreateBookingModal │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ListingDetails │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Listings │ │ │ │ │ ├── assets │ │ │ │ │ │ └── listing-loading-card-cover.jpg │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ListingsFilters │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ListingsPagination │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ListingsSkeleton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Login │ │ │ │ │ ├── assets │ │ │ │ │ │ └── google_logo.jpg │ │ │ │ │ └── index.tsx │ │ │ │ ├── NotFound │ │ │ │ │ └── index.tsx │ │ │ │ ├── Stripe │ │ │ │ │ └── index.tsx │ │ │ │ ├── User │ │ │ │ │ ├── components │ │ │ │ │ │ ├── UserBookings │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── UserListings │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── UserProfile │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ └── styles │ │ │ │ └── index.css │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── server │ │ ├── mondodb │ │ ├── .dockerignore │ │ ├── .env │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── Dockerfile.dev │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── seed │ │ │ ├── clear.ts │ │ │ └── seed.ts │ │ ├── src │ │ │ ├── database │ │ │ │ └── index.ts │ │ │ ├── graphql │ │ │ │ ├── index.ts │ │ │ │ ├── resolvers │ │ │ │ │ ├── Booking │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── Listing │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── User │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── Viewer │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── index.ts │ │ │ │ └── typeDefs.ts │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── api │ │ │ │ ├── Cloudinary.ts │ │ │ │ ├── Google.ts │ │ │ │ ├── Stripe.ts │ │ │ │ └── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ └── index.ts │ │ └── tsconfig.json │ │ └── postgresql │ │ ├── .dockerignore │ │ ├── .env │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── Dockerfile.dev │ │ ├── docker-compose.yml │ │ ├── ormconfig.json │ │ ├── package.json │ │ ├── seed │ │ ├── clear.ts │ │ └── seed.ts │ │ ├── src │ │ ├── database │ │ │ ├── entity │ │ │ │ ├── BookingEntity.ts │ │ │ │ ├── ListingEntity.ts │ │ │ │ ├── UserEntity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── graphql │ │ │ ├── index.ts │ │ │ ├── resolvers │ │ │ │ ├── Booking │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── Listing │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── User │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── Viewer │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── index.ts │ │ │ └── typeDefs.ts │ │ ├── index.ts │ │ └── lib │ │ │ ├── api │ │ │ ├── Cloudinary.ts │ │ │ ├── Google.ts │ │ │ ├── Stripe.ts │ │ │ └── index.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── yarn.lock ├── k8s │ ├── client-clusterIP.yaml │ ├── client-deployment.yaml │ ├── ingress-config.yaml │ ├── mongo-clusterIP.yaml │ ├── mongo-deployment.yaml │ ├── server-clusterIP.yaml │ └── server-deployment.yaml └── skaffold │ └── skaffold.yaml ├── img ├── pic-app-1-final.png ├── pic-app-2-current.png ├── pic-m08-p01.png ├── pic-m08-p02.png ├── pic-m09-p01.png ├── pic-m09-p02.png ├── pic-m09-p03.png ├── pic-m09-p04.png ├── pic-m09-p05.png ├── pic-m09-p06.png ├── pic-m09-p07.png ├── pic-m09-p08.png ├── pic-m09-p09.png ├── pic-m10-p01.png ├── pic-m10-p02.png ├── pic-m10-p03.png ├── pic-m10-p04.png ├── pic-m13-p01.png ├── pic-setup-k9s-01.png ├── pic-setup-k9s-02.png ├── pic19.png ├── pic20.png ├── pic21.png ├── pic22.png ├── pic23.png ├── pic24.png ├── pic35-1.png ├── pic35-2.png ├── pic36-1.png ├── pic42.png └── pic43.png └── sonar-project.properties /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/app1-build-and-deploy-client.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/workflows/app1-build-and-deploy-client.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/app1-build-and-deploy-server.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/workflows/app1-build-and-deploy-server.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/app2-build-and-deploy-client.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/workflows/app2-build-and-deploy-client.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/app2-build-and-deploy-server.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/workflows/app2-build-and-deploy-server.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/app2-sonar-cloud-scan.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.github/workflows/app2-sonar-cloud-scan.yml.disabled -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.~ 2 | *.log 3 | node_modules/ 4 | package-lock.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/.prettierrc -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/Readme.md -------------------------------------------------------------------------------- /app1/Readme-postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/Readme-postgresql.md -------------------------------------------------------------------------------- /app1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/Readme.md -------------------------------------------------------------------------------- /app1/app/client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/.dockerignore -------------------------------------------------------------------------------- /app1/app/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/.gitignore -------------------------------------------------------------------------------- /app1/app/client/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/Dockerfile.dev -------------------------------------------------------------------------------- /app1/app/client/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/Dockerfile.prod -------------------------------------------------------------------------------- /app1/app/client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/nginx.conf -------------------------------------------------------------------------------- /app1/app/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/package.json -------------------------------------------------------------------------------- /app1/app/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/public/favicon.ico -------------------------------------------------------------------------------- /app1/app/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/public/index.html -------------------------------------------------------------------------------- /app1/app/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/public/manifest.json -------------------------------------------------------------------------------- /app1/app/client/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/schema.json -------------------------------------------------------------------------------- /app1/app/client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/index.tsx -------------------------------------------------------------------------------- /app1/app/client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/Listings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/Listings.tsx -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/__generated__/DeleteListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/__generated__/DeleteListing.ts -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/__generated__/Listings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/__generated__/Listings.ts -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/components/ListingsSkeleton/ListingsSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/components/ListingsSkeleton/ListingsSkeleton.tsx -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/components/ListingsSkeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ListingsSkeleton"; 2 | -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/components/ListingsSkeleton/styles/ListingsSkeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/components/ListingsSkeleton/styles/ListingsSkeleton.css -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ListingsSkeleton"; 2 | -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Listings"; 2 | -------------------------------------------------------------------------------- /app1/app/client/src/sections/Listings/styles/Listings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/sections/Listings/styles/Listings.css -------------------------------------------------------------------------------- /app1/app/client/src/sections/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Listings"; 2 | -------------------------------------------------------------------------------- /app1/app/client/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/src/styles/index.css -------------------------------------------------------------------------------- /app1/app/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/client/tsconfig.json -------------------------------------------------------------------------------- /app1/app/server/mongodb/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/.dockerignore -------------------------------------------------------------------------------- /app1/app/server/mongodb/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/.eslintrc.json -------------------------------------------------------------------------------- /app1/app/server/mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/.gitignore -------------------------------------------------------------------------------- /app1/app/server/mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/Dockerfile -------------------------------------------------------------------------------- /app1/app/server/mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/package.json -------------------------------------------------------------------------------- /app1/app/server/mongodb/seed/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/seed/seed.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/database/index.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/graphql/index.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/graphql/resolvers/Listing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/graphql/resolvers/Listing/index.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/graphql/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/graphql/typeDefs.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/index.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/src/lib/types.ts -------------------------------------------------------------------------------- /app1/app/server/mongodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/mongodb/tsconfig.json -------------------------------------------------------------------------------- /app1/app/server/postgresql/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/.dockerignore -------------------------------------------------------------------------------- /app1/app/server/postgresql/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/.env -------------------------------------------------------------------------------- /app1/app/server/postgresql/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/.eslintrc.json -------------------------------------------------------------------------------- /app1/app/server/postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/.gitignore -------------------------------------------------------------------------------- /app1/app/server/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/Dockerfile -------------------------------------------------------------------------------- /app1/app/server/postgresql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/docker-compose.yml -------------------------------------------------------------------------------- /app1/app/server/postgresql/ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/ormconfig.json -------------------------------------------------------------------------------- /app1/app/server/postgresql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/package.json -------------------------------------------------------------------------------- /app1/app/server/postgresql/seed/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/seed/seed.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/database/entity/ListingEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/database/entity/ListingEntity.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/database/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ListingEntity'; 2 | -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/database/index.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/graphql/index.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/graphql/resolvers/Listing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/graphql/resolvers/Listing/index.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/graphql/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/graphql/typeDefs.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/index.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/src/lib/types.ts -------------------------------------------------------------------------------- /app1/app/server/postgresql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/app/server/postgresql/tsconfig.json -------------------------------------------------------------------------------- /app1/k8s/client-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/client-clusterIP.yaml -------------------------------------------------------------------------------- /app1/k8s/client-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/client-deployment.yaml -------------------------------------------------------------------------------- /app1/k8s/ingress-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/ingress-config.yaml -------------------------------------------------------------------------------- /app1/k8s/mongo-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/mongo-clusterIP.yaml -------------------------------------------------------------------------------- /app1/k8s/mongo-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/mongo-deployment.yaml -------------------------------------------------------------------------------- /app1/k8s/server-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/server-clusterIP.yaml -------------------------------------------------------------------------------- /app1/k8s/server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/k8s/server-deployment.yaml -------------------------------------------------------------------------------- /app1/skaffold/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app1/skaffold/skaffold.yaml -------------------------------------------------------------------------------- /app2/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/Development.md -------------------------------------------------------------------------------- /app2/Readme-postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/Readme-postgresql.md -------------------------------------------------------------------------------- /app2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/Readme.md -------------------------------------------------------------------------------- /app2/app/client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/.dockerignore -------------------------------------------------------------------------------- /app2/app/client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/.env -------------------------------------------------------------------------------- /app2/app/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/.gitignore -------------------------------------------------------------------------------- /app2/app/client/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/Dockerfile.dev -------------------------------------------------------------------------------- /app2/app/client/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/Dockerfile.prod -------------------------------------------------------------------------------- /app2/app/client/apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/apollo.config.js -------------------------------------------------------------------------------- /app2/app/client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/nginx.conf -------------------------------------------------------------------------------- /app2/app/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/package.json -------------------------------------------------------------------------------- /app2/app/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/public/favicon.ico -------------------------------------------------------------------------------- /app2/app/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/public/index.html -------------------------------------------------------------------------------- /app2/app/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/public/manifest.json -------------------------------------------------------------------------------- /app2/app/client/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/schema.json -------------------------------------------------------------------------------- /app2/app/client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/AppHeaderSkeleton/assets/tinyhouse-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/AppHeaderSkeleton/assets/tinyhouse-logo.png -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/AppHeaderSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/AppHeaderSkeleton/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/ErrorBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/ErrorBanner/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/ListingCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/ListingCard/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/PageSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/PageSkeleton/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/components/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/globalTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/globalTypes.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/ConnectStripe/__generated__/ConnectStripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/ConnectStripe/__generated__/ConnectStripe.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/ConnectStripe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/ConnectStripe/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/CreateBooking/__generated__/CreateBooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/CreateBooking/__generated__/CreateBooking.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/CreateBooking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/CreateBooking/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/DisconnectStripe/__generated__/DisconnectStripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/DisconnectStripe/__generated__/DisconnectStripe.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/DisconnectStripe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/DisconnectStripe/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/HostListing/__generated__/HostListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/HostListing/__generated__/HostListing.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/HostListing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/HostListing/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/LogIn/__generated__/LogIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/LogIn/__generated__/LogIn.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/LogIn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/LogIn/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/LogOut/__generated__/LogOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/LogOut/__generated__/LogOut.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/LogOut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/LogOut/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/mutations/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/AuthUrl/__generated__/AuthUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/AuthUrl/__generated__/AuthUrl.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/AuthUrl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/AuthUrl/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/Listing/__generated__/Listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/Listing/__generated__/Listing.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/Listing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/Listing/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/Listings/__generated__/Listings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/Listings/__generated__/Listings.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/Listings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/Listings/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/User/__generated__/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/User/__generated__/User.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/User/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/User/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/graphql/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/graphql/queries/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useScrollToTop'; 2 | -------------------------------------------------------------------------------- /app2/app/client/src/lib/hooks/useScrollToTop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/hooks/useScrollToTop/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/types.ts -------------------------------------------------------------------------------- /app2/app/client/src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/lib/utils/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app2/app/client/src/sections/AppHeader/assets/tinyhouse-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/AppHeader/assets/tinyhouse-logo.png -------------------------------------------------------------------------------- /app2/app/client/src/sections/AppHeader/components/MenuItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/AppHeader/components/MenuItems/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/AppHeader/components/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './MenuItems'; 2 | -------------------------------------------------------------------------------- /app2/app/client/src/sections/AppHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/AppHeader/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/cancun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/cancun.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/dubai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/dubai.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/listing-loading-card-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/listing-loading-card-cover.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/london.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/london.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/los-angeles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/los-angeles.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/map-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/map-background.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/san-fransisco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/san-fransisco.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/assets/toronto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/assets/toronto.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/components/HomeHero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/components/HomeHero/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/components/HomeListings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/components/HomeListings/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/components/HomeListingsSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/components/HomeListingsSkeleton/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/components/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/sections/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Home/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Host/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Host/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/ListingBookings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/ListingBookings/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/ListingCreateBooking/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/ListingCreateBooking/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/ListingCreateBooking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/ListingCreateBooking/types.ts -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/ListingCreateBookingModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/ListingCreateBookingModal/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/ListingDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/ListingDetails/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/components/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listing/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/assets/listing-loading-card-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/assets/listing-loading-card-cover.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/components/ListingsFilters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/components/ListingsFilters/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/components/ListingsPagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/components/ListingsPagination/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/components/ListingsSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/components/ListingsSkeleton/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/components/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/sections/Listings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Listings/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Login/assets/google_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Login/assets/google_logo.jpg -------------------------------------------------------------------------------- /app2/app/client/src/sections/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Login/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/NotFound/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/Stripe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/Stripe/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/User/components/UserBookings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/User/components/UserBookings/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/User/components/UserListings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/User/components/UserListings/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/User/components/UserProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/User/components/UserProfile/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/User/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/User/components/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/sections/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/User/index.tsx -------------------------------------------------------------------------------- /app2/app/client/src/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/sections/index.ts -------------------------------------------------------------------------------- /app2/app/client/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/src/styles/index.css -------------------------------------------------------------------------------- /app2/app/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/tsconfig.json -------------------------------------------------------------------------------- /app2/app/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/client/yarn.lock -------------------------------------------------------------------------------- /app2/app/server/mondodb/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/.dockerignore -------------------------------------------------------------------------------- /app2/app/server/mondodb/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/.env -------------------------------------------------------------------------------- /app2/app/server/mondodb/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/.eslintrc.json -------------------------------------------------------------------------------- /app2/app/server/mondodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/.gitignore -------------------------------------------------------------------------------- /app2/app/server/mondodb/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/Dockerfile.dev -------------------------------------------------------------------------------- /app2/app/server/mondodb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/docker-compose.yml -------------------------------------------------------------------------------- /app2/app/server/mondodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/package.json -------------------------------------------------------------------------------- /app2/app/server/mondodb/seed/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/seed/clear.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/seed/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/seed/seed.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/database/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Booking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Booking/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Booking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Booking/types.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Listing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Listing/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Listing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Listing/types.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/User/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/User/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/User/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/User/types.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Viewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Viewer/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/Viewer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/Viewer/types.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/graphql/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/graphql/typeDefs.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/api/Cloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/api/Cloudinary.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/api/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/api/Google.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/api/Stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/api/Stripe.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/api/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/types.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/src/lib/utils/index.ts -------------------------------------------------------------------------------- /app2/app/server/mondodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/mondodb/tsconfig.json -------------------------------------------------------------------------------- /app2/app/server/postgresql/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/.dockerignore -------------------------------------------------------------------------------- /app2/app/server/postgresql/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/.env -------------------------------------------------------------------------------- /app2/app/server/postgresql/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/.eslintrc.json -------------------------------------------------------------------------------- /app2/app/server/postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/.gitignore -------------------------------------------------------------------------------- /app2/app/server/postgresql/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/Dockerfile.dev -------------------------------------------------------------------------------- /app2/app/server/postgresql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/docker-compose.yml -------------------------------------------------------------------------------- /app2/app/server/postgresql/ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/ormconfig.json -------------------------------------------------------------------------------- /app2/app/server/postgresql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/package.json -------------------------------------------------------------------------------- /app2/app/server/postgresql/seed/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/seed/clear.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/seed/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/seed/seed.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/database/entity/BookingEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/database/entity/BookingEntity.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/database/entity/ListingEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/database/entity/ListingEntity.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/database/entity/UserEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/database/entity/UserEntity.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/database/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/database/entity/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/database/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Booking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Booking/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Booking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Booking/types.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Listing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Listing/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Listing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Listing/types.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/User/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/User/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/User/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/User/types.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Viewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Viewer/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/Viewer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/Viewer/types.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/graphql/typeDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/graphql/typeDefs.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/api/Cloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/api/Cloudinary.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/api/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/api/Google.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/api/Stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/api/Stripe.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/api/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/types.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/src/lib/utils/index.ts -------------------------------------------------------------------------------- /app2/app/server/postgresql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/tsconfig.json -------------------------------------------------------------------------------- /app2/app/server/postgresql/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/app/server/postgresql/yarn.lock -------------------------------------------------------------------------------- /app2/k8s/client-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/client-clusterIP.yaml -------------------------------------------------------------------------------- /app2/k8s/client-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/client-deployment.yaml -------------------------------------------------------------------------------- /app2/k8s/ingress-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/ingress-config.yaml -------------------------------------------------------------------------------- /app2/k8s/mongo-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/mongo-clusterIP.yaml -------------------------------------------------------------------------------- /app2/k8s/mongo-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/mongo-deployment.yaml -------------------------------------------------------------------------------- /app2/k8s/server-clusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/server-clusterIP.yaml -------------------------------------------------------------------------------- /app2/k8s/server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/k8s/server-deployment.yaml -------------------------------------------------------------------------------- /app2/skaffold/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/app2/skaffold/skaffold.yaml -------------------------------------------------------------------------------- /img/pic-app-1-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-app-1-final.png -------------------------------------------------------------------------------- /img/pic-app-2-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-app-2-current.png -------------------------------------------------------------------------------- /img/pic-m08-p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m08-p01.png -------------------------------------------------------------------------------- /img/pic-m08-p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m08-p02.png -------------------------------------------------------------------------------- /img/pic-m09-p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p01.png -------------------------------------------------------------------------------- /img/pic-m09-p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p02.png -------------------------------------------------------------------------------- /img/pic-m09-p03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p03.png -------------------------------------------------------------------------------- /img/pic-m09-p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p04.png -------------------------------------------------------------------------------- /img/pic-m09-p05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p05.png -------------------------------------------------------------------------------- /img/pic-m09-p06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p06.png -------------------------------------------------------------------------------- /img/pic-m09-p07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p07.png -------------------------------------------------------------------------------- /img/pic-m09-p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p08.png -------------------------------------------------------------------------------- /img/pic-m09-p09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m09-p09.png -------------------------------------------------------------------------------- /img/pic-m10-p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m10-p01.png -------------------------------------------------------------------------------- /img/pic-m10-p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m10-p02.png -------------------------------------------------------------------------------- /img/pic-m10-p03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m10-p03.png -------------------------------------------------------------------------------- /img/pic-m10-p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m10-p04.png -------------------------------------------------------------------------------- /img/pic-m13-p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-m13-p01.png -------------------------------------------------------------------------------- /img/pic-setup-k9s-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-setup-k9s-01.png -------------------------------------------------------------------------------- /img/pic-setup-k9s-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic-setup-k9s-02.png -------------------------------------------------------------------------------- /img/pic19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic19.png -------------------------------------------------------------------------------- /img/pic20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic20.png -------------------------------------------------------------------------------- /img/pic21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic21.png -------------------------------------------------------------------------------- /img/pic22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic22.png -------------------------------------------------------------------------------- /img/pic23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic23.png -------------------------------------------------------------------------------- /img/pic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic24.png -------------------------------------------------------------------------------- /img/pic35-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic35-1.png -------------------------------------------------------------------------------- /img/pic35-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic35-2.png -------------------------------------------------------------------------------- /img/pic36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic36-1.png -------------------------------------------------------------------------------- /img/pic42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic42.png -------------------------------------------------------------------------------- /img/pic43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/img/pic43.png -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmakaka/TinyHouse-A-Fullstack-React-Masterclass-with-TypeScript-and-GraphQL/HEAD/sonar-project.properties --------------------------------------------------------------------------------