Skip to content

Aum-Kansara/Exam-Guider

Repository files navigation

Exam Guider

Question Bank Generator (For Data Structures And Algorithms)

Classified Questions which are Extracted from exam paper's pdf (programmatically)

Video Demo :

Exam.Guide.-.Google.Chrome.2023-06-24.14-15-31.1.mp4

Generated PDF :

Output

Run Locally

1. Docker

  • Run following commands

    docker pull aumkansara/question_bank_generator:latest
    
    docker run -p 8000:8000 aumkansara/question_bank_generator:latest
    
  • App running on localhost:8000

2. Clone Git Repository

  • Run

    git clone https://github.com/Aum-Kansara/Exam-Guider.git
    
    cd Exam-Guider/
    
    • Using Virtual Environment

      pip3 install virtualenv
      
      virtualenv venv
      
    1. Linux

       source venv/bin/activate
      
    2. Windows

       source venv/scripts/activate
      
  • Next steps

    pip3 install -r requirements.txt
    
    gunicorn app:app
    
    • Use host=0.0.0.0 to publicly access service

      gunicorn app:app --host=0.0.0.0
      
  • App running on localhost:8000

Thank You