updated README.md

This commit is contained in:
Juthatip McDevitt 2024-05-30 14:20:06 -05:00
parent d089fe461a
commit 0027c70401
3 changed files with 11 additions and 1 deletions

View file

@ -1 +1,11 @@
# E-commerce web application by Next.js
This project is a fullstack donut delivery web application. We will be useing MongoDB to store data and Amazon S3 to store all images. For user authentication, we will be using NextAuth.js and have two options (google provider and credentials provider) for users to register/login into thier dashboard.
## Web application architecture
<p><img src="./public/web_app_architechture.png" width="800" height="380" /></p>
## To start the project
* `npm run dev`

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View file

@ -39,7 +39,7 @@ export const authOptions = {
}), }),
], ],
session:{ session:{
strategy: "jwt" strategy: "jwt",
}, },
}; };