Coder Social home page Coder Social logo

eduonline's Introduction

EduOnline

EduOnline is a platform for teachers and students to give MCQ based exams. Teachers can login with an admin account, make their own subjects, and create timed exams for it. Students can then login with their accounts and attend the exam. Their results are then automatically graded and displayed to the teacher upon request.

Setup Instructions

  1. Install MariaDB and the required development libraries for it

    // Development libraries
    sudo apt install libmariadb-dev libmariadb-dev-compat libmariadbclient-dev
    sudo apt install python3-dev
    
  2. Create a database called eduonline in MariaDB

  3. In the EduOnline directory, make a secrets.py file and write down the secret variables required

    DJANGO_SECRET_KEY = '<any random string>'
    DATABASE_PASSWORD = '<your mariadb database password>'
    

    Then in the local_settings.py file, search for DATABASES and change the username there to the username of your database (usually root)

  4. Make a virtual environment of python and install dependencies

    python3 -m venv env
    source env/bin/activate
    pip install -r requirements.txt
    
  5. Create an admin user for the Django project

    python3 manage.py createsuperuser --settings=EduOnline.local_settings

  6. Migrate the changes to your database.

    python3 manage.py makemigrations --settings=EduOnline.local_settings
    python3 manage.py migrate --settings=EduOnline.local_settings
    
  7. Run the server with the local settings.

    python3 manage.py runserver --settings=EduOnline.local_settings

Development

  • Python 3
  • Django
  • MariaDB
  • jQuery
  • JavaScript
  • Bootstrap

eduonline's People

Contributors

rofe-dl avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.