Poscomp-Simulator is a simple webapp that allows you test your knowledge to POSCOMP exam.
🌟 Don't forget to give a star to this repo =)
-
Install composer in your OS
-
Clone the repo into your http server
$ git clone https://github.com/allexlima/poscomp-simulator.git $ cd poscomp-simulator/
-
Download the dependences using composer
$ composer install
-
Access the webapp http://localhost/poscomp-simulator and enjoy it
You can update some webapp attributes like app name, supervisor/professor name, app details, exam max grade, and if the app should shuffle alternatives. To do this updates you can edit the 6 first lines of src/data.json
file! It isn't necessary change any PHP code =)
-
Open
src/data.json
file, then in thequestions
array attribute, you'll be able to add, editing, or removing questions/answers. It's important to follow the template above:{ "id": intValue, "text": stringValue, "answers": [ {"id": "a", "text": stringValue, "status": boolValue}, {"id": "b", "text": stringValue, "status": boolValue}, {"id": "c", "text": stringValue, "status": boolValue}, {"id": "d", "text": stringValue, "status": boolValue}, {"id": "e", "text": stringValue, "status": boolValue} ], "source": stringValue }
Obs: Each question MUST have exactly 5 alternatives!
Developed by Allex Lima