Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions backend/.env.example

This file was deleted.

2 changes: 2 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ Thumbs.db
# Prisma
prisma/*.db
prisma/*.db-journal

/generated/prisma
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Prisma client generator outputs to ../src/generated/prisma, but .gitignore is configured to ignore /generated/prisma, which points at a different directory. As written, the generated Prisma client under src/generated/prisma will not be ignored and is likely to be committed; if the intent is to keep generated code out of version control, the ignore pattern should be updated to match the actual output path (e.g. src/generated/prisma/).

Suggested change
/generated/prisma
src/generated/prisma/

Copilot uses AI. Check for mistakes.
Loading
Loading