From 8d3041620f713bebd789d377e11ab02530828910 Mon Sep 17 00:00:00 2001 From: devYuMinKim Date: Sun, 4 Feb 2024 13:16:05 +0900 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor:=20Modify=20direc?= =?UTF-8?q?tory=20structure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.eslintrc.json => .eslintrc.json | 0 .../.gitignore => .gitignore | 0 .../.husky => .husky}/pre-commit | 0 .../.husky => .husky}/pre-push | 0 .../.prettierignore => .prettierignore | 0 .../.prettierrc.js => .prettierrc.js | 0 .../__snapshots__/snapshot.js.snap | 0 .../__tests__ => __tests__}/index.test.tsx | 0 .../__tests__ => __tests__}/snapshot.js | 0 ...mmitlint.config.js => commitlint.config.js | 0 .../jest.config.ts => jest.config.ts | 0 .../jest.setup.ts => jest.setup.ts | 0 .../package-lock.json => package-lock.json | 0 .../package.json => package.json | 0 .../postcss.config.js => postcss.config.js | 0 .../public => public}/fonts/temp.ttf | 0 .../public => public}/images/temp.png | Bin .../public => public}/svgs/next.svg | 0 .../public => public}/svgs/vercel.svg | 0 .../src => src}/app/favicon.ico | Bin .../src => src}/app/globals.css | 0 .../src => src}/app/layout.tsx | 0 .../src => src}/app/page.tsx | 0 .../tailwind.config.ts => tailwind.config.ts | 0 .../tsconfig.json => tsconfig.json | 0 yuminnk-nextjs-starter/yarn.lock => yarn.lock | 0 yuminnk-nextjs-starter/README.md | 36 ------------------ 27 files changed, 36 deletions(-) rename yuminnk-nextjs-starter/.eslintrc.json => .eslintrc.json (100%) rename yuminnk-nextjs-starter/.gitignore => .gitignore (100%) rename {yuminnk-nextjs-starter/.husky => .husky}/pre-commit (100%) rename {yuminnk-nextjs-starter/.husky => .husky}/pre-push (100%) rename yuminnk-nextjs-starter/.prettierignore => .prettierignore (100%) rename yuminnk-nextjs-starter/.prettierrc.js => .prettierrc.js (100%) rename {yuminnk-nextjs-starter/__tests__ => __tests__}/__snapshots__/snapshot.js.snap (100%) rename {yuminnk-nextjs-starter/__tests__ => __tests__}/index.test.tsx (100%) rename {yuminnk-nextjs-starter/__tests__ => __tests__}/snapshot.js (100%) rename yuminnk-nextjs-starter/commitlint.config.js => commitlint.config.js (100%) rename yuminnk-nextjs-starter/jest.config.ts => jest.config.ts (100%) rename yuminnk-nextjs-starter/jest.setup.ts => jest.setup.ts (100%) rename yuminnk-nextjs-starter/package-lock.json => package-lock.json (100%) rename yuminnk-nextjs-starter/package.json => package.json (100%) rename yuminnk-nextjs-starter/postcss.config.js => postcss.config.js (100%) rename {yuminnk-nextjs-starter/public => public}/fonts/temp.ttf (100%) rename {yuminnk-nextjs-starter/public => public}/images/temp.png (100%) rename {yuminnk-nextjs-starter/public => public}/svgs/next.svg (100%) rename {yuminnk-nextjs-starter/public => public}/svgs/vercel.svg (100%) rename {yuminnk-nextjs-starter/src => src}/app/favicon.ico (100%) rename {yuminnk-nextjs-starter/src => src}/app/globals.css (100%) rename {yuminnk-nextjs-starter/src => src}/app/layout.tsx (100%) rename {yuminnk-nextjs-starter/src => src}/app/page.tsx (100%) rename yuminnk-nextjs-starter/tailwind.config.ts => tailwind.config.ts (100%) rename yuminnk-nextjs-starter/tsconfig.json => tsconfig.json (100%) rename yuminnk-nextjs-starter/yarn.lock => yarn.lock (100%) delete mode 100644 yuminnk-nextjs-starter/README.md diff --git a/yuminnk-nextjs-starter/.eslintrc.json b/.eslintrc.json similarity index 100% rename from yuminnk-nextjs-starter/.eslintrc.json rename to .eslintrc.json diff --git a/yuminnk-nextjs-starter/.gitignore b/.gitignore similarity index 100% rename from yuminnk-nextjs-starter/.gitignore rename to .gitignore diff --git a/yuminnk-nextjs-starter/.husky/pre-commit b/.husky/pre-commit similarity index 100% rename from yuminnk-nextjs-starter/.husky/pre-commit rename to .husky/pre-commit diff --git a/yuminnk-nextjs-starter/.husky/pre-push b/.husky/pre-push similarity index 100% rename from yuminnk-nextjs-starter/.husky/pre-push rename to .husky/pre-push diff --git a/yuminnk-nextjs-starter/.prettierignore b/.prettierignore similarity index 100% rename from yuminnk-nextjs-starter/.prettierignore rename to .prettierignore diff --git a/yuminnk-nextjs-starter/.prettierrc.js b/.prettierrc.js similarity index 100% rename from yuminnk-nextjs-starter/.prettierrc.js rename to .prettierrc.js diff --git a/yuminnk-nextjs-starter/__tests__/__snapshots__/snapshot.js.snap b/__tests__/__snapshots__/snapshot.js.snap similarity index 100% rename from yuminnk-nextjs-starter/__tests__/__snapshots__/snapshot.js.snap rename to __tests__/__snapshots__/snapshot.js.snap diff --git a/yuminnk-nextjs-starter/__tests__/index.test.tsx b/__tests__/index.test.tsx similarity index 100% rename from yuminnk-nextjs-starter/__tests__/index.test.tsx rename to __tests__/index.test.tsx diff --git a/yuminnk-nextjs-starter/__tests__/snapshot.js b/__tests__/snapshot.js similarity index 100% rename from yuminnk-nextjs-starter/__tests__/snapshot.js rename to __tests__/snapshot.js diff --git a/yuminnk-nextjs-starter/commitlint.config.js b/commitlint.config.js similarity index 100% rename from yuminnk-nextjs-starter/commitlint.config.js rename to commitlint.config.js diff --git a/yuminnk-nextjs-starter/jest.config.ts b/jest.config.ts similarity index 100% rename from yuminnk-nextjs-starter/jest.config.ts rename to jest.config.ts diff --git a/yuminnk-nextjs-starter/jest.setup.ts b/jest.setup.ts similarity index 100% rename from yuminnk-nextjs-starter/jest.setup.ts rename to jest.setup.ts diff --git a/yuminnk-nextjs-starter/package-lock.json b/package-lock.json similarity index 100% rename from yuminnk-nextjs-starter/package-lock.json rename to package-lock.json diff --git a/yuminnk-nextjs-starter/package.json b/package.json similarity index 100% rename from yuminnk-nextjs-starter/package.json rename to package.json diff --git a/yuminnk-nextjs-starter/postcss.config.js b/postcss.config.js similarity index 100% rename from yuminnk-nextjs-starter/postcss.config.js rename to postcss.config.js diff --git a/yuminnk-nextjs-starter/public/fonts/temp.ttf b/public/fonts/temp.ttf similarity index 100% rename from yuminnk-nextjs-starter/public/fonts/temp.ttf rename to public/fonts/temp.ttf diff --git a/yuminnk-nextjs-starter/public/images/temp.png b/public/images/temp.png similarity index 100% rename from yuminnk-nextjs-starter/public/images/temp.png rename to public/images/temp.png diff --git a/yuminnk-nextjs-starter/public/svgs/next.svg b/public/svgs/next.svg similarity index 100% rename from yuminnk-nextjs-starter/public/svgs/next.svg rename to public/svgs/next.svg diff --git a/yuminnk-nextjs-starter/public/svgs/vercel.svg b/public/svgs/vercel.svg similarity index 100% rename from yuminnk-nextjs-starter/public/svgs/vercel.svg rename to public/svgs/vercel.svg diff --git a/yuminnk-nextjs-starter/src/app/favicon.ico b/src/app/favicon.ico similarity index 100% rename from yuminnk-nextjs-starter/src/app/favicon.ico rename to src/app/favicon.ico diff --git a/yuminnk-nextjs-starter/src/app/globals.css b/src/app/globals.css similarity index 100% rename from yuminnk-nextjs-starter/src/app/globals.css rename to src/app/globals.css diff --git a/yuminnk-nextjs-starter/src/app/layout.tsx b/src/app/layout.tsx similarity index 100% rename from yuminnk-nextjs-starter/src/app/layout.tsx rename to src/app/layout.tsx diff --git a/yuminnk-nextjs-starter/src/app/page.tsx b/src/app/page.tsx similarity index 100% rename from yuminnk-nextjs-starter/src/app/page.tsx rename to src/app/page.tsx diff --git a/yuminnk-nextjs-starter/tailwind.config.ts b/tailwind.config.ts similarity index 100% rename from yuminnk-nextjs-starter/tailwind.config.ts rename to tailwind.config.ts diff --git a/yuminnk-nextjs-starter/tsconfig.json b/tsconfig.json similarity index 100% rename from yuminnk-nextjs-starter/tsconfig.json rename to tsconfig.json diff --git a/yuminnk-nextjs-starter/yarn.lock b/yarn.lock similarity index 100% rename from yuminnk-nextjs-starter/yarn.lock rename to yarn.lock diff --git a/yuminnk-nextjs-starter/README.md b/yuminnk-nextjs-starter/README.md deleted file mode 100644 index c403366..0000000 --- a/yuminnk-nextjs-starter/README.md +++ /dev/null @@ -1,36 +0,0 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.