dariuszz123 / pm-quiz

Quiz for software projects management practice class

Home Page:http://pm.cuf.lt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pm-quiz

Quiz for software projects management practice class at VU.

Live: http://pm.cuf.lt

Requirements

Modern web browser with enabled javascript.

Dev

Requirements

Build

npm install

Run the Application

We have preconfigured the project with a simple development web server. The simplest way to start this server is:

npm start

Now browse to the app at http://localhost:8000/.

Questions data

Questions data stored in JSON ./data/test_1.json

Data structure is self explaining:

{
    "questions": [
        {
            "question": "Question text?",
            "options": [
                {"title": "Option 1", "correct": false},
                {"title": "Option 2", "correct": true}
            ],
            "explain": "Some text"
        }
    ]
}

Credits

Author: Darius Krištapavičius

Course lecturer: dr. Asta Vaitkevičienė http://uosis.mif.vu.lt/~astak

Questions: professor Valdas Undzėnas

Various improvements:

License

The MIT License (MIT)

About

Quiz for software projects management practice class

http://pm.cuf.lt

License:MIT License


Languages

Language:JavaScript 65.8%Language:HTML 24.2%Language:CSS 10.0%