Accomplishments

  • Completed the backend for our passion project

  • Worked (to some success) on our team passion project by linking the backend and frontend repositories

  • Completed the homework hacks and popcorn hacks for the student teachings this week

  • Finished our student teaching lesson

  • Created different classes for the chat api (create, read, and test) each with their own methods (GET and POST)

Issues

  • The api (chat.py) was not defined in main.py so I fixed this by defining it (chat_api = Blueprint(‘chat_api’, name, url_prefix=’/api/chats’) api = Api(chat_api))

  • My model was not working and wasn’t set up to store data so I added (from model.chats import *) to the chat.py file