Skip to content

Commit d273cc1

Browse files
committed
fix: unique email breaks project creation
1 parent 16e159f commit d273cc1

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ BitMatch provides a streamlined platform where:
2222
- The system suggests the most relevant projects based on a percentage match score.
2323
- Students can apply to join suitable projects.
2424

25-
### 💬 Direct Messaging
25+
### 🤖 AI Match Score + Feedback
2626

27-
- Innovators and students can communicate directly within the platform.
28-
- Enables seamless discussions about project roles, requirements, and feedback.
27+
- Innovators can request AI feedback on their project ideas/postings.
28+
- Students looking for projects can ask AI to evaluate how well of a fit they are for a project listing.
2929

3030
## 🛠 Tech Stack
3131

@@ -38,6 +38,7 @@ BitMatch provides a streamlined platform where:
3838
- Django
3939
- AWS RDS Postgres Instance
4040
- AWS S3 (For Images)
41+
- Gemini API
4142

4243
### Deployment
4344

@@ -49,7 +50,6 @@ BitMatch provides a streamlined platform where:
4950

5051
![BitMatchArchitecture](https://github.com/user-attachments/assets/f359c19f-edbb-413d-a025-b9c5cde63bd0)
5152

52-
5353
## 🛠 Running Locally
5454

5555
### 1️⃣ **Backend Setup**

backend/projects/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Project(models.Model):
2323
interest_tags = ArrayField(models.CharField(max_length=225), blank=True, null=True)
2424
skill_tags = ArrayField(models.CharField(max_length=225), blank=True, null=True)
2525
full_description = models.TextField(max_length=2500, blank=True, null=True)
26-
email = models.EmailField(unique=True, blank=True, null=True)
26+
email = models.EmailField(blank=True, null=True)
2727
other_contact = models.CharField(max_length=225, blank=True, null=True)
2828
updates = ArrayField(models.CharField(max_length=540), blank=True, null=True)
2929
wanted_description = models.TextField(max_length=2500, blank=True, null=True)

frontend/bitmatch/README.md

-8
This file was deleted.

0 commit comments

Comments
 (0)