feat: ✨ Title: feat(database): Setup Prisma for database management #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description:
This commit introduces Prisma as the database management tool for the project. A new
db.ts
file has been added in thelib
directory for database operations. Theregister
action in theactions
directory has been updated to use Prisma for user registration. TheREADME.md
file has been updated with new information about the project. Thepackage.json
andpackage-lock.json
files have been updated with new dependencies.Details: The changes in this commit include:
db.ts
inlib
for database operations using Prisma.register.ts
inactions
to use Prisma for user registration.README.md
with new information about the project.package.json
andpackage-lock.json
with new dependencies.Changeset:
lib/db.ts
actions/register.ts
README.md
package.json
andpackage-lock.json
These changes enhance the functionality of the application by providing a robust database management tool. The update to the
README.md
file improves the documentation of the project. Footer: Co-authored-by: Ricardo Esteves [email protected]