diff --git a/.github/workflows/frontend-tests.yml b/.github/workflows/frontend-tests.yml index dfbcecc..5d97a0b 100644 --- a/.github/workflows/frontend-tests.yml +++ b/.github/workflows/frontend-tests.yml @@ -22,5 +22,5 @@ jobs: - name: Install dependencies run: npm install frontend-next/ - - name: Buide - run: npm --prefix frontend-next/ run build + - name: Build + run: npm --prefix frontend-next/ run build \ No newline at end of file diff --git a/README.md b/README.md index 0dc9ea2..9dc6949 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,2 @@ -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.js`. 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. +# ChatMaps +Main repo for ChatMaps, our COS420 Project. diff --git a/.eslintrc.json b/frontend-next/.eslintrc.json similarity index 100% rename from .eslintrc.json rename to frontend-next/.eslintrc.json diff --git a/.gitignore b/frontend-next/.gitignore similarity index 93% rename from .gitignore rename to frontend-next/.gitignore index fd3dbb5..ea3d442 100644 --- a/.gitignore +++ b/frontend-next/.gitignore @@ -34,3 +34,4 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts +frontend-next/node_modules \ No newline at end of file diff --git a/frontend-next/README.md b/frontend-next/README.md new file mode 100644 index 0000000..0dc9ea2 --- /dev/null +++ b/frontend-next/README.md @@ -0,0 +1,36 @@ +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.js`. 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. diff --git a/jsconfig.json b/frontend-next/jsconfig.json similarity index 100% rename from jsconfig.json rename to frontend-next/jsconfig.json diff --git a/next.config.mjs b/frontend-next/next.config.mjs similarity index 100% rename from next.config.mjs rename to frontend-next/next.config.mjs diff --git a/package-lock.json b/frontend-next/package-lock.json similarity index 100% rename from package-lock.json rename to frontend-next/package-lock.json diff --git a/package.json b/frontend-next/package.json similarity index 100% rename from package.json rename to frontend-next/package.json diff --git a/postcss.config.js b/frontend-next/postcss.config.js similarity index 100% rename from postcss.config.js rename to frontend-next/postcss.config.js diff --git a/public/next.svg b/frontend-next/public/next.svg similarity index 100% rename from public/next.svg rename to frontend-next/public/next.svg diff --git a/public/vercel.svg b/frontend-next/public/vercel.svg similarity index 100% rename from public/vercel.svg rename to frontend-next/public/vercel.svg diff --git a/src/app/favicon.ico b/frontend-next/src/app/favicon.ico similarity index 100% rename from src/app/favicon.ico rename to frontend-next/src/app/favicon.ico diff --git a/src/app/globals.css b/frontend-next/src/app/globals.css similarity index 100% rename from src/app/globals.css rename to frontend-next/src/app/globals.css diff --git a/src/app/layout.js b/frontend-next/src/app/layout.js similarity index 100% rename from src/app/layout.js rename to frontend-next/src/app/layout.js diff --git a/src/app/page.js b/frontend-next/src/app/page.js similarity index 100% rename from src/app/page.js rename to frontend-next/src/app/page.js diff --git a/tailwind.config.js b/frontend-next/tailwind.config.js similarity index 100% rename from tailwind.config.js rename to frontend-next/tailwind.config.js