Skip to content

Latest commit

 

History

History
65 lines (49 loc) · 1.38 KB

File metadata and controls

65 lines (49 loc) · 1.38 KB

StudyBud

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

Screenshots

 

Feed Home


Room Conversation Preview

Setup Instructions

1. Clone the repository

git clone https://github.com/divanov11/StudyBud.git
cd StudyBud

2. Create and activate a virtual environment

# 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/activate

3. Install dependencies

pip install -r requirements.txt

4. Run the development server

python manage.py runserver

The application will be available at http://127.0.0.1:8000/