Skip to content

BodaTech/REACT_DJANGO_ONLINE_QUIZ_MAKER_PROJECT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About The Project

Welcome to the Online Quiz Maker project! This application allows users to create, and take quizzes online. this platform provides a user-friendly interface for quiz creation and administration.

Technologies Used

  • Backend: Django, Django REST Framework
  • Frontend: React
  • Database: Mysql
  • Authentication: JSON Web Tokens (JWT: access / refresh token)

Setup

Backend (Django)

  1. Clone the repository to your local machine:

    git clone https://github.com/BodaTech/REACT_DJANGO_ONLINE_QUIZ_MAKER_PROJECT.git

  2. Navigate to the backend directory:

    cd Backend

  3. Virtual environment

    • create a virtual environment py -m venv venv
    • activate it venv/Scripts/activate ( source venv/bin/activate in macOS/Linux)
  4. Install dependencies:

    pip install -r requirements.txt

  5. Apply migrations:

    config your database in core/settings.py

    py manage.py migrate

  6. Run the Django development server:

    py manage.py migrate

Frontend (React)

  1. Navigate to the frontend directory:

    cd frontend

  2. Install dependencies:

    npm install

  3. Start the development server:

    npm start