This is a Next.js project bootstrapped with create-next-app.
Please make sure you have the following downloaded:
- VScode if you don't already have it
- Node.js (LTS)
- GitHub Desktop OPTIONAL FOR GITHUB:
- MySQL Workbench If you are more comfortable typing in the terminal for Git, then do that (it's like how the TA showed us that one day) OR you can download:
If you are still unsure how to use GIT, please look at the powerpoint our TA made for Git in the Box Folder.
Open VsCode and click on the "Terminal" tab at the top and create new terminal:
In the terminal, clone the repository to your computer.
git clone https://github.com/vaipos/Bug-Tracker-CS-3354.gitNext, navigate to the project directory and install the dependencies.
cd Bug-Tracker-CS-3354
npm install
npm i next-auth
npm i -D daisyui@latest
npm i prisma@5.3.1
npm i @next-auth/prisma-adapter
npm install rechartsSet up your own server on MySQL Workbench and then migrate:
npx prisma migrate devFinally, start the development server.
npm run dev
# or
yarn dev
# or
pnpm devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page automatically updates as you edit the file.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.