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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ cd <your-path>/sb/frontend
```bash
npm install
npm run build
nmp start
npm start
```
8. In your browser, navigate in the search bar to <a href="http://localhost:3000">http://localhost:3000</a>.

Expand Down
2 changes: 1 addition & 1 deletion pocs-capstone/backend/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class AvatarType(models.TextChoices):
last_feed = models.DateField(default=None)
pet_name = models.CharField(max_length=32, default='')
flavour_text = models.TextField(
max_length=256, default='Welcome to Study Buddy!', blank=True, null=True)
max_length=256, default='Welcome to Task Pet!', blank=True, null=True)
palette = models.IntegerField(default=0)

def __str__(self):
Expand Down
2 changes: 1 addition & 1 deletion pocs-capstone/backend/db/studybuddyemail.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def send_email(email_reciever):

load_dotenv(find_dotenv())

email_sender = 'studybuddyverify@gmail.com'
email_sender = 'productivitypet101@gmail.com'
email_password = os.getenv('GMAIL_PASSWORD')
email_reciever = email_reciever

Expand Down
10 changes: 5 additions & 5 deletions pocs-capstone/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Eel==0.14.0
et-xmlfile==1.1.0
exceptiongroup==1.0.3
future==0.18.3
gevent==22.10.2
gevent-websocket==0.10.1
# gevent==22.10.2
# gevent-websocket==0.10.1
google-api-core==2.11.0
google-api-python-client==2.73.0
google-auth==2.16.0
Expand Down Expand Up @@ -77,9 +77,9 @@ PyJWT==2.6.0
pylint==2.6.0
pyparsing==3.0.9
pyperclip==1.8.1
PyQt5==5.15.7
PyQt5-Qt5==5.15.2
PyQt5-sip==12.11.0
# PyQt5==5.15.7
# PyQt5-Qt5==5.15.2
# PyQt5-sip==12.11.0
pyrsistent==0.19.3
pytest==7.2.0
python-dateutil==2.8.2
Expand Down
Loading