StudyBud is a Django-based web application where users can create and join study rooms on various topics, engage in discussions, and collaborate with other learners.
This project was built as part of a comprehensive 7-hour video tutorial: Watch the full tutorial here
|
Feed Home |
Room Conversation Preview |
git clone https://github.com/divanov11/StudyBud.git
cd StudyBud# Install virtualenv if you haven't already
pip install virtualenv
# Create a virtual environment
virtualenv venv
# Activate the virtual environment
# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activatepip install -r requirements.txtpython manage.py runserverThe application will be available at http://127.0.0.1:8000/