From 86dc2995bc939f9f3864f9d2fd8dee34049d9b2d Mon Sep 17 00:00:00 2001 From: odeta939 Date: Mon, 26 Aug 2024 19:51:37 +0200 Subject: [PATCH] moved project to the top level --- vinoa-web/.eslintrc.json => .eslintrc.json | 0 vinoa-web/.gitignore => .gitignore | 0 vinoa-web/.prettierrc => .prettierrc | 0 README.md | 18 ++++++++++++++---- .../api/auth/[...nextauth]/route.ts | 0 {vinoa-web/app => app}/api/review/route.ts | 0 {vinoa-web/app => app}/api/user/route.ts | 0 {vinoa-web/app => app}/favicon.ico | Bin {vinoa-web/app => app}/globals.css | 0 {vinoa-web/app => app}/layout.tsx | 0 {vinoa-web/app => app}/monthsWine/page.tsx | 0 {vinoa-web/app => app}/page.tsx | 0 {vinoa-web/app => app}/profile/page.tsx | 0 .../app => app}/studio/[[...index]]/page.tsx | 0 {vinoa-web/app => app}/wines/[slug]/page.tsx | 0 {vinoa-web/app => app}/wines/page.tsx | 0 .../Avatar/Avatar.tsx | 0 .../components => components}/Avatar/index.ts | 0 .../CommentSection/CommentSection.tsx | 0 .../CommentSection/index.ts | 0 .../LoginButton/LoginButton.tsx | 0 .../LoginButton/index.ts | 0 .../Navigation/Navigation.tsx | 0 .../Navigation/index.ts | 0 .../PreviousRatings/PreviousReviews.tsx | 0 .../PreviousRatings/index.ts | 0 .../Rating/Rating.tsx | 0 .../components => components}/Rating/index.ts | 0 .../ReviewToPost/ReviewToPost.tsx | 0 .../ReviewToPost/index.ts | 0 .../SessionProviders/SessionProviders.tsx | 0 .../SessionProviders/index.ts | 0 .../UserProfile/UserProfile.tsx | 0 .../UserProfile/index.ts | 0 .../WineCardWithReview/WineCardWithReview.tsx | 0 .../WineCardWithReview/index.ts | 0 .../WineCarousel/WineCarousel.tsx | 0 .../WineCarousel/index.ts | 0 .../WineInformationSection.tsx | 0 .../WineList/WineList.tsx | 0 .../WineList/index.ts | 0 .../WineListCard/WineListCard.tsx | 0 .../WineListCard/index.ts | 0 .../WineTastingCard/WineTastingCard.tsx | 0 .../WineTastingCard/index.ts | 0 {vinoa-web/lib => lib}/assets/Logo.tsx | 0 {vinoa-web/lib => lib}/assets/ProfileLogo.tsx | 0 {vinoa-web/lib => lib}/assets/Wine.tsx | 0 .../lib => lib}/utils/helperFunctions.ts | 0 vinoa-web/next.config.js => next.config.js | 0 vinoa-web/package.json => package.json | 0 vinoa-web/pnpm-lock.yaml => pnpm-lock.yaml | 0 .../postcss.config.js => postcss.config.js | 0 {vinoa-web/public => public}/next.svg | 0 {vinoa-web/public => public}/vercel.svg | 0 .../sanity.config.ts => sanity.config.ts | 0 .../sanity-utils/review-utils.ts | 0 .../sanity-utils/tag-utils.ts | 0 .../sanity-utils/user-utils.ts | 0 .../sanity-utils/wine-utils.ts | 0 {vinoa-web/sanity => sanity}/sanityClient.ts | 0 {vinoa-web/sanity => sanity}/schemas/index.ts | 0 .../sanity => sanity}/schemas/review.ts | 0 {vinoa-web/sanity => sanity}/schemas/tag.ts | 0 {vinoa-web/sanity => sanity}/schemas/user.ts | 0 {vinoa-web/sanity => sanity}/schemas/wine.ts | 0 {vinoa-web/store => store}/store.ts | 0 {vinoa-web/store => store}/wine-store.ts | 0 .../tailwind.config.js => tailwind.config.js | 0 vinoa-web/tsconfig.json => tsconfig.json | 0 {vinoa-web/types => types}/Review.ts | 0 {vinoa-web/types => types}/ReviewDTO.ts | 0 {vinoa-web/types => types}/SessionUser.ts | 0 {vinoa-web/types => types}/User.ts | 0 {vinoa-web/types => types}/Wine.ts | 0 vinoa-web/README.md | 15 --------------- 76 files changed, 14 insertions(+), 19 deletions(-) rename vinoa-web/.eslintrc.json => .eslintrc.json (100%) rename vinoa-web/.gitignore => .gitignore (100%) rename vinoa-web/.prettierrc => .prettierrc (100%) rename {vinoa-web/app => app}/api/auth/[...nextauth]/route.ts (100%) rename {vinoa-web/app => app}/api/review/route.ts (100%) rename {vinoa-web/app => app}/api/user/route.ts (100%) rename {vinoa-web/app => app}/favicon.ico (100%) rename {vinoa-web/app => app}/globals.css (100%) rename {vinoa-web/app => app}/layout.tsx (100%) rename {vinoa-web/app => app}/monthsWine/page.tsx (100%) rename {vinoa-web/app => app}/page.tsx (100%) rename {vinoa-web/app => app}/profile/page.tsx (100%) rename {vinoa-web/app => app}/studio/[[...index]]/page.tsx (100%) rename {vinoa-web/app => app}/wines/[slug]/page.tsx (100%) rename {vinoa-web/app => app}/wines/page.tsx (100%) rename {vinoa-web/components => components}/Avatar/Avatar.tsx (100%) rename {vinoa-web/components => components}/Avatar/index.ts (100%) rename {vinoa-web/components => components}/CommentSection/CommentSection.tsx (100%) rename {vinoa-web/components => components}/CommentSection/index.ts (100%) rename {vinoa-web/components => components}/LoginButton/LoginButton.tsx (100%) rename {vinoa-web/components => components}/LoginButton/index.ts (100%) rename {vinoa-web/components => components}/Navigation/Navigation.tsx (100%) rename {vinoa-web/components => components}/Navigation/index.ts (100%) rename {vinoa-web/components => components}/PreviousRatings/PreviousReviews.tsx (100%) rename {vinoa-web/components => components}/PreviousRatings/index.ts (100%) rename {vinoa-web/components => components}/Rating/Rating.tsx (100%) rename {vinoa-web/components => components}/Rating/index.ts (100%) rename {vinoa-web/components => components}/ReviewToPost/ReviewToPost.tsx (100%) rename {vinoa-web/components => components}/ReviewToPost/index.ts (100%) rename {vinoa-web/components => components}/SessionProviders/SessionProviders.tsx (100%) rename {vinoa-web/components => components}/SessionProviders/index.ts (100%) rename {vinoa-web/components => components}/UserProfile/UserProfile.tsx (100%) rename {vinoa-web/components => components}/UserProfile/index.ts (100%) rename {vinoa-web/components => components}/WineCardWithReview/WineCardWithReview.tsx (100%) rename {vinoa-web/components => components}/WineCardWithReview/index.ts (100%) rename {vinoa-web/components => components}/WineCarousel/WineCarousel.tsx (100%) rename {vinoa-web/components => components}/WineCarousel/index.ts (100%) rename {vinoa-web/components => components}/WineInformationSection/WineInformationSection.tsx (100%) rename {vinoa-web/components => components}/WineList/WineList.tsx (100%) rename {vinoa-web/components => components}/WineList/index.ts (100%) rename {vinoa-web/components => components}/WineListCard/WineListCard.tsx (100%) rename {vinoa-web/components => components}/WineListCard/index.ts (100%) rename {vinoa-web/components => components}/WineTastingCard/WineTastingCard.tsx (100%) rename {vinoa-web/components => components}/WineTastingCard/index.ts (100%) rename {vinoa-web/lib => lib}/assets/Logo.tsx (100%) rename {vinoa-web/lib => lib}/assets/ProfileLogo.tsx (100%) rename {vinoa-web/lib => lib}/assets/Wine.tsx (100%) rename {vinoa-web/lib => lib}/utils/helperFunctions.ts (100%) rename vinoa-web/next.config.js => next.config.js (100%) rename vinoa-web/package.json => package.json (100%) rename vinoa-web/pnpm-lock.yaml => pnpm-lock.yaml (100%) rename vinoa-web/postcss.config.js => postcss.config.js (100%) rename {vinoa-web/public => public}/next.svg (100%) rename {vinoa-web/public => public}/vercel.svg (100%) rename vinoa-web/sanity.config.ts => sanity.config.ts (100%) rename {vinoa-web/sanity => sanity}/sanity-utils/review-utils.ts (100%) rename {vinoa-web/sanity => sanity}/sanity-utils/tag-utils.ts (100%) rename {vinoa-web/sanity => sanity}/sanity-utils/user-utils.ts (100%) rename {vinoa-web/sanity => sanity}/sanity-utils/wine-utils.ts (100%) rename {vinoa-web/sanity => sanity}/sanityClient.ts (100%) rename {vinoa-web/sanity => sanity}/schemas/index.ts (100%) rename {vinoa-web/sanity => sanity}/schemas/review.ts (100%) rename {vinoa-web/sanity => sanity}/schemas/tag.ts (100%) rename {vinoa-web/sanity => sanity}/schemas/user.ts (100%) rename {vinoa-web/sanity => sanity}/schemas/wine.ts (100%) rename {vinoa-web/store => store}/store.ts (100%) rename {vinoa-web/store => store}/wine-store.ts (100%) rename vinoa-web/tailwind.config.js => tailwind.config.js (100%) rename vinoa-web/tsconfig.json => tsconfig.json (100%) rename {vinoa-web/types => types}/Review.ts (100%) rename {vinoa-web/types => types}/ReviewDTO.ts (100%) rename {vinoa-web/types => types}/SessionUser.ts (100%) rename {vinoa-web/types => types}/User.ts (100%) rename {vinoa-web/types => types}/Wine.ts (100%) delete mode 100644 vinoa-web/README.md diff --git a/vinoa-web/.eslintrc.json b/.eslintrc.json similarity index 100% rename from vinoa-web/.eslintrc.json rename to .eslintrc.json diff --git a/vinoa-web/.gitignore b/.gitignore similarity index 100% rename from vinoa-web/.gitignore rename to .gitignore diff --git a/vinoa-web/.prettierrc b/.prettierrc similarity index 100% rename from vinoa-web/.prettierrc rename to .prettierrc diff --git a/README.md b/README.md index 811b1e9..f393382 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,15 @@ -This is a hobby project -The purpose of this project is to create a tool that can be used during wine tasting -This is a nextjs project with embeded sanity studio +## Getting Started -https://www.youtube.com/watch?v=OcTPaUfay5I&t=2978s&ab_channel=freeCodeCamp.org +First, download dependencies: + +```bash +pnpm install +``` + +Then, run the development server: + +```bash +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. diff --git a/vinoa-web/app/api/auth/[...nextauth]/route.ts b/app/api/auth/[...nextauth]/route.ts similarity index 100% rename from vinoa-web/app/api/auth/[...nextauth]/route.ts rename to app/api/auth/[...nextauth]/route.ts diff --git a/vinoa-web/app/api/review/route.ts b/app/api/review/route.ts similarity index 100% rename from vinoa-web/app/api/review/route.ts rename to app/api/review/route.ts diff --git a/vinoa-web/app/api/user/route.ts b/app/api/user/route.ts similarity index 100% rename from vinoa-web/app/api/user/route.ts rename to app/api/user/route.ts diff --git a/vinoa-web/app/favicon.ico b/app/favicon.ico similarity index 100% rename from vinoa-web/app/favicon.ico rename to app/favicon.ico diff --git a/vinoa-web/app/globals.css b/app/globals.css similarity index 100% rename from vinoa-web/app/globals.css rename to app/globals.css diff --git a/vinoa-web/app/layout.tsx b/app/layout.tsx similarity index 100% rename from vinoa-web/app/layout.tsx rename to app/layout.tsx diff --git a/vinoa-web/app/monthsWine/page.tsx b/app/monthsWine/page.tsx similarity index 100% rename from vinoa-web/app/monthsWine/page.tsx rename to app/monthsWine/page.tsx diff --git a/vinoa-web/app/page.tsx b/app/page.tsx similarity index 100% rename from vinoa-web/app/page.tsx rename to app/page.tsx diff --git a/vinoa-web/app/profile/page.tsx b/app/profile/page.tsx similarity index 100% rename from vinoa-web/app/profile/page.tsx rename to app/profile/page.tsx diff --git a/vinoa-web/app/studio/[[...index]]/page.tsx b/app/studio/[[...index]]/page.tsx similarity index 100% rename from vinoa-web/app/studio/[[...index]]/page.tsx rename to app/studio/[[...index]]/page.tsx diff --git a/vinoa-web/app/wines/[slug]/page.tsx b/app/wines/[slug]/page.tsx similarity index 100% rename from vinoa-web/app/wines/[slug]/page.tsx rename to app/wines/[slug]/page.tsx diff --git a/vinoa-web/app/wines/page.tsx b/app/wines/page.tsx similarity index 100% rename from vinoa-web/app/wines/page.tsx rename to app/wines/page.tsx diff --git a/vinoa-web/components/Avatar/Avatar.tsx b/components/Avatar/Avatar.tsx similarity index 100% rename from vinoa-web/components/Avatar/Avatar.tsx rename to components/Avatar/Avatar.tsx diff --git a/vinoa-web/components/Avatar/index.ts b/components/Avatar/index.ts similarity index 100% rename from vinoa-web/components/Avatar/index.ts rename to components/Avatar/index.ts diff --git a/vinoa-web/components/CommentSection/CommentSection.tsx b/components/CommentSection/CommentSection.tsx similarity index 100% rename from vinoa-web/components/CommentSection/CommentSection.tsx rename to components/CommentSection/CommentSection.tsx diff --git a/vinoa-web/components/CommentSection/index.ts b/components/CommentSection/index.ts similarity index 100% rename from vinoa-web/components/CommentSection/index.ts rename to components/CommentSection/index.ts diff --git a/vinoa-web/components/LoginButton/LoginButton.tsx b/components/LoginButton/LoginButton.tsx similarity index 100% rename from vinoa-web/components/LoginButton/LoginButton.tsx rename to components/LoginButton/LoginButton.tsx diff --git a/vinoa-web/components/LoginButton/index.ts b/components/LoginButton/index.ts similarity index 100% rename from vinoa-web/components/LoginButton/index.ts rename to components/LoginButton/index.ts diff --git a/vinoa-web/components/Navigation/Navigation.tsx b/components/Navigation/Navigation.tsx similarity index 100% rename from vinoa-web/components/Navigation/Navigation.tsx rename to components/Navigation/Navigation.tsx diff --git a/vinoa-web/components/Navigation/index.ts b/components/Navigation/index.ts similarity index 100% rename from vinoa-web/components/Navigation/index.ts rename to components/Navigation/index.ts diff --git a/vinoa-web/components/PreviousRatings/PreviousReviews.tsx b/components/PreviousRatings/PreviousReviews.tsx similarity index 100% rename from vinoa-web/components/PreviousRatings/PreviousReviews.tsx rename to components/PreviousRatings/PreviousReviews.tsx diff --git a/vinoa-web/components/PreviousRatings/index.ts b/components/PreviousRatings/index.ts similarity index 100% rename from vinoa-web/components/PreviousRatings/index.ts rename to components/PreviousRatings/index.ts diff --git a/vinoa-web/components/Rating/Rating.tsx b/components/Rating/Rating.tsx similarity index 100% rename from vinoa-web/components/Rating/Rating.tsx rename to components/Rating/Rating.tsx diff --git a/vinoa-web/components/Rating/index.ts b/components/Rating/index.ts similarity index 100% rename from vinoa-web/components/Rating/index.ts rename to components/Rating/index.ts diff --git a/vinoa-web/components/ReviewToPost/ReviewToPost.tsx b/components/ReviewToPost/ReviewToPost.tsx similarity index 100% rename from vinoa-web/components/ReviewToPost/ReviewToPost.tsx rename to components/ReviewToPost/ReviewToPost.tsx diff --git a/vinoa-web/components/ReviewToPost/index.ts b/components/ReviewToPost/index.ts similarity index 100% rename from vinoa-web/components/ReviewToPost/index.ts rename to components/ReviewToPost/index.ts diff --git a/vinoa-web/components/SessionProviders/SessionProviders.tsx b/components/SessionProviders/SessionProviders.tsx similarity index 100% rename from vinoa-web/components/SessionProviders/SessionProviders.tsx rename to components/SessionProviders/SessionProviders.tsx diff --git a/vinoa-web/components/SessionProviders/index.ts b/components/SessionProviders/index.ts similarity index 100% rename from vinoa-web/components/SessionProviders/index.ts rename to components/SessionProviders/index.ts diff --git a/vinoa-web/components/UserProfile/UserProfile.tsx b/components/UserProfile/UserProfile.tsx similarity index 100% rename from vinoa-web/components/UserProfile/UserProfile.tsx rename to components/UserProfile/UserProfile.tsx diff --git a/vinoa-web/components/UserProfile/index.ts b/components/UserProfile/index.ts similarity index 100% rename from vinoa-web/components/UserProfile/index.ts rename to components/UserProfile/index.ts diff --git a/vinoa-web/components/WineCardWithReview/WineCardWithReview.tsx b/components/WineCardWithReview/WineCardWithReview.tsx similarity index 100% rename from vinoa-web/components/WineCardWithReview/WineCardWithReview.tsx rename to components/WineCardWithReview/WineCardWithReview.tsx diff --git a/vinoa-web/components/WineCardWithReview/index.ts b/components/WineCardWithReview/index.ts similarity index 100% rename from vinoa-web/components/WineCardWithReview/index.ts rename to components/WineCardWithReview/index.ts diff --git a/vinoa-web/components/WineCarousel/WineCarousel.tsx b/components/WineCarousel/WineCarousel.tsx similarity index 100% rename from vinoa-web/components/WineCarousel/WineCarousel.tsx rename to components/WineCarousel/WineCarousel.tsx diff --git a/vinoa-web/components/WineCarousel/index.ts b/components/WineCarousel/index.ts similarity index 100% rename from vinoa-web/components/WineCarousel/index.ts rename to components/WineCarousel/index.ts diff --git a/vinoa-web/components/WineInformationSection/WineInformationSection.tsx b/components/WineInformationSection/WineInformationSection.tsx similarity index 100% rename from vinoa-web/components/WineInformationSection/WineInformationSection.tsx rename to components/WineInformationSection/WineInformationSection.tsx diff --git a/vinoa-web/components/WineList/WineList.tsx b/components/WineList/WineList.tsx similarity index 100% rename from vinoa-web/components/WineList/WineList.tsx rename to components/WineList/WineList.tsx diff --git a/vinoa-web/components/WineList/index.ts b/components/WineList/index.ts similarity index 100% rename from vinoa-web/components/WineList/index.ts rename to components/WineList/index.ts diff --git a/vinoa-web/components/WineListCard/WineListCard.tsx b/components/WineListCard/WineListCard.tsx similarity index 100% rename from vinoa-web/components/WineListCard/WineListCard.tsx rename to components/WineListCard/WineListCard.tsx diff --git a/vinoa-web/components/WineListCard/index.ts b/components/WineListCard/index.ts similarity index 100% rename from vinoa-web/components/WineListCard/index.ts rename to components/WineListCard/index.ts diff --git a/vinoa-web/components/WineTastingCard/WineTastingCard.tsx b/components/WineTastingCard/WineTastingCard.tsx similarity index 100% rename from vinoa-web/components/WineTastingCard/WineTastingCard.tsx rename to components/WineTastingCard/WineTastingCard.tsx diff --git a/vinoa-web/components/WineTastingCard/index.ts b/components/WineTastingCard/index.ts similarity index 100% rename from vinoa-web/components/WineTastingCard/index.ts rename to components/WineTastingCard/index.ts diff --git a/vinoa-web/lib/assets/Logo.tsx b/lib/assets/Logo.tsx similarity index 100% rename from vinoa-web/lib/assets/Logo.tsx rename to lib/assets/Logo.tsx diff --git a/vinoa-web/lib/assets/ProfileLogo.tsx b/lib/assets/ProfileLogo.tsx similarity index 100% rename from vinoa-web/lib/assets/ProfileLogo.tsx rename to lib/assets/ProfileLogo.tsx diff --git a/vinoa-web/lib/assets/Wine.tsx b/lib/assets/Wine.tsx similarity index 100% rename from vinoa-web/lib/assets/Wine.tsx rename to lib/assets/Wine.tsx diff --git a/vinoa-web/lib/utils/helperFunctions.ts b/lib/utils/helperFunctions.ts similarity index 100% rename from vinoa-web/lib/utils/helperFunctions.ts rename to lib/utils/helperFunctions.ts diff --git a/vinoa-web/next.config.js b/next.config.js similarity index 100% rename from vinoa-web/next.config.js rename to next.config.js diff --git a/vinoa-web/package.json b/package.json similarity index 100% rename from vinoa-web/package.json rename to package.json diff --git a/vinoa-web/pnpm-lock.yaml b/pnpm-lock.yaml similarity index 100% rename from vinoa-web/pnpm-lock.yaml rename to pnpm-lock.yaml diff --git a/vinoa-web/postcss.config.js b/postcss.config.js similarity index 100% rename from vinoa-web/postcss.config.js rename to postcss.config.js diff --git a/vinoa-web/public/next.svg b/public/next.svg similarity index 100% rename from vinoa-web/public/next.svg rename to public/next.svg diff --git a/vinoa-web/public/vercel.svg b/public/vercel.svg similarity index 100% rename from vinoa-web/public/vercel.svg rename to public/vercel.svg diff --git a/vinoa-web/sanity.config.ts b/sanity.config.ts similarity index 100% rename from vinoa-web/sanity.config.ts rename to sanity.config.ts diff --git a/vinoa-web/sanity/sanity-utils/review-utils.ts b/sanity/sanity-utils/review-utils.ts similarity index 100% rename from vinoa-web/sanity/sanity-utils/review-utils.ts rename to sanity/sanity-utils/review-utils.ts diff --git a/vinoa-web/sanity/sanity-utils/tag-utils.ts b/sanity/sanity-utils/tag-utils.ts similarity index 100% rename from vinoa-web/sanity/sanity-utils/tag-utils.ts rename to sanity/sanity-utils/tag-utils.ts diff --git a/vinoa-web/sanity/sanity-utils/user-utils.ts b/sanity/sanity-utils/user-utils.ts similarity index 100% rename from vinoa-web/sanity/sanity-utils/user-utils.ts rename to sanity/sanity-utils/user-utils.ts diff --git a/vinoa-web/sanity/sanity-utils/wine-utils.ts b/sanity/sanity-utils/wine-utils.ts similarity index 100% rename from vinoa-web/sanity/sanity-utils/wine-utils.ts rename to sanity/sanity-utils/wine-utils.ts diff --git a/vinoa-web/sanity/sanityClient.ts b/sanity/sanityClient.ts similarity index 100% rename from vinoa-web/sanity/sanityClient.ts rename to sanity/sanityClient.ts diff --git a/vinoa-web/sanity/schemas/index.ts b/sanity/schemas/index.ts similarity index 100% rename from vinoa-web/sanity/schemas/index.ts rename to sanity/schemas/index.ts diff --git a/vinoa-web/sanity/schemas/review.ts b/sanity/schemas/review.ts similarity index 100% rename from vinoa-web/sanity/schemas/review.ts rename to sanity/schemas/review.ts diff --git a/vinoa-web/sanity/schemas/tag.ts b/sanity/schemas/tag.ts similarity index 100% rename from vinoa-web/sanity/schemas/tag.ts rename to sanity/schemas/tag.ts diff --git a/vinoa-web/sanity/schemas/user.ts b/sanity/schemas/user.ts similarity index 100% rename from vinoa-web/sanity/schemas/user.ts rename to sanity/schemas/user.ts diff --git a/vinoa-web/sanity/schemas/wine.ts b/sanity/schemas/wine.ts similarity index 100% rename from vinoa-web/sanity/schemas/wine.ts rename to sanity/schemas/wine.ts diff --git a/vinoa-web/store/store.ts b/store/store.ts similarity index 100% rename from vinoa-web/store/store.ts rename to store/store.ts diff --git a/vinoa-web/store/wine-store.ts b/store/wine-store.ts similarity index 100% rename from vinoa-web/store/wine-store.ts rename to store/wine-store.ts diff --git a/vinoa-web/tailwind.config.js b/tailwind.config.js similarity index 100% rename from vinoa-web/tailwind.config.js rename to tailwind.config.js diff --git a/vinoa-web/tsconfig.json b/tsconfig.json similarity index 100% rename from vinoa-web/tsconfig.json rename to tsconfig.json diff --git a/vinoa-web/types/Review.ts b/types/Review.ts similarity index 100% rename from vinoa-web/types/Review.ts rename to types/Review.ts diff --git a/vinoa-web/types/ReviewDTO.ts b/types/ReviewDTO.ts similarity index 100% rename from vinoa-web/types/ReviewDTO.ts rename to types/ReviewDTO.ts diff --git a/vinoa-web/types/SessionUser.ts b/types/SessionUser.ts similarity index 100% rename from vinoa-web/types/SessionUser.ts rename to types/SessionUser.ts diff --git a/vinoa-web/types/User.ts b/types/User.ts similarity index 100% rename from vinoa-web/types/User.ts rename to types/User.ts diff --git a/vinoa-web/types/Wine.ts b/types/Wine.ts similarity index 100% rename from vinoa-web/types/Wine.ts rename to types/Wine.ts diff --git a/vinoa-web/README.md b/vinoa-web/README.md deleted file mode 100644 index f393382..0000000 --- a/vinoa-web/README.md +++ /dev/null @@ -1,15 +0,0 @@ -## Getting Started - -First, download dependencies: - -```bash -pnpm install -``` - -Then, run the development server: - -```bash -pnpm dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.