ThinkGuru is an interactive learning platform designed to enhance knowledge acquisition and retention through engaging quizzes, articles, and discussion forums. It aims to foster a community of learners and educators by providing a space for collaboration and knowledge sharing.
- Interactive Quizzes: Users can take quizzes on various topics to test their knowledge.
- Articles & Resources: Access a library of articles to deepen understanding.
- Discussion Forums: Engage in discussions with peers and educators.
- User Profiles: Personalized profiles to track learning progress and achievements.
- Backend: Django (Python)
- Frontend: HTML, CSS, JavaScript
- Database: SQLite (or PostgreSQL/MySQL)
- Authentication: Django’s built-in authentication system
- Clone the repository:
git clone https://github.com/aniketk17/ThinkGuru.git
- Create Virtual Environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install Dependencies:
pip install -r requirements.txt
- Apply Database migrations:
python manage.py migrate python manage.py makemigrations
- Create a superuser to access the admin dashboard:
python manage.py createsuperuser
- Start the Development Server:
python manage.py runserver