Giter Club home page Giter Club logo

somsyd-examsys's Introduction

Description

A lightweighted online exam system, users are able to take several types of questions like single selection, multiple selections, true or false, direct input short answer or long sentences.

This project is based on Python 3.6 and Django 3.0.4

Features

  • Django settings for multiple environments (Production mode & local dev. mode)
  • Customized Django user model which replaced the default user model
  • Connect to remote mysql database directly
  • Rich-text editor embedded in Django admin

Prerequisites

  • Create a SensitiveInfo.py under settings folder
BASE_SECRET_KEY = 'xxxxxxxxxxxxxxxx'
BASE_ALLOWED_HOSTS = ['*']
LOCAL_ALLOWED_HOSTS = ['xxxxxxxxxxxxxxxx']
PROD_ALLOWED_HOSTS = ['xxxxxxxxxxxxxxxx']

LOCAL_DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'xxxxxxxxxxxxxxxx',
        'USER': 'xxxxxxxxxxxxxxxx',
        'PASSWORD': 'xxxxxxxxxxxxxxxx',
        'HOST': '127.0.0.1',
        'PORT': 3333
    }
}

PROD_DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'xxxxxxxxxxxxxxxx',
        'USER': 'xxxxxxxxxxxxxxxx',
        'PASSWORD': 'xxxxxxxxxxxxxxxx',
        'HOST': 'localhost',
        'PORT': 3306
    }
}

# USE this to link remote server mysql port 3306 to local 3333 port
# ssh -N -L 3333:127.0.0.1:3306 [email protected] -p 22
  • Clone code to local
  • Setup .venv (optional)
  • pip install packages
asgiref==3.2.7
Django==3.0.4
mysqlclient==1.4.6
Pillow==7.0.0
pytz==2019.3
sqlparse==0.3.1

Screenshot

Screenshot

Screenshot

Screenshot

somsyd-examsys's People

Contributors

sctongye avatar

Stargazers

Souvik Bhattacharji avatar  avatar

Watchers

James Cloos avatar  avatar

Forkers

olisehgenesis

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.