Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 760 Bytes

README.md

File metadata and controls

44 lines (35 loc) · 760 Bytes

Online Examination System

Online Examination System in Django

LINK: https://sitrcexam.herokuapp.com/

Getting started

Requirements

  • Python 3.6+
  • PIP
  • venv

Installation

# Clone the repository
git clone https://github.com/omganeshdahale/online-examination-system.git

# Enter into the directory
cd online-examination-system/

# Create virtual environment
python3 -m venv .venv

# Activate virtual environment
source .venv/bin/activate

# Install the dependencies
pip install -r requirements.txt

# Apply migrations.
python manage.py migrate

Configuration

Create .env file in cwd and add the following

SECRET_KEY=''
DEBUG=True

EMAIL_USER=''
EMAIL_PASS=''

Starting the application

python manage.py runserver