Software-Engineering


# Installation

You gonna need the following cmds for creating a simple Next.js app.

npx create-next-app@latest ./

# Additional Packages

# bcrypt

For hashing passwords.

npm install bcrypt

# mongoDB & mongoose

For accessing & managing data in a Database.

npm install mongodb mongoose

# next-auth

For authentification within our Next.js app.

npm install next-auth

# Created Structure

We recreated some folders & created some new. Now our folder-structure looks as the follows: