A simple web application for user authentication (Login/Signup) and user profiles using Next.js and Nest.js with a MySQL database.
- Login
- Sign Up
- Update profil picture and Data
- User authentication using JWT
Install Next.js & Nest.js with npm
git clone https://github.com/Shubham3314/NextJs-NestJs.git
cd NextJs-NestJs
Install Next.js Dependencies
cd nextjs
npm install
Install Nest.js Dependencies
cd nestjs
npm install
I have used XAMPP for MySQL. Make sure your MySQL server is running.
Start the Backend first
cd nestjs
npm run start
Start the Frontend
cd nextjs
npm run dev