Study Club Repository is a Discord-based web application where users can create rooms, send messages, and tag them with different topics. It allows users to log in to use the application, facilitating study group discussions and topic-based conversations.
Create Rooms: Users can create rooms for different topics. Messaging: Send and receive messages within rooms. Tagging: Tag messages with different topics for better organization. User Authentication: Secure user login and registration
Prerequisites Python 3.x pip (Python package installer) Virtualenv (recommended)
git clone https://github.com/AnndyyRobles/DjangoDiscordBasedWebApp.git
cd DjangoDiscordBasedWebApp
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Open your browser and go to http://127.0.0.1:8000/ to see the application in action.
Creating Rooms: Log in and click on "Create Room" to start a new discussion room.
Sending Messages: Enter a room and start sending messages to other participants.
Tagging Messages: Use tags to organize messages by topics.
Recent Activities: View recent activities and interactions on the right sidebar.