Upraised Quiz application is a simple online quiz application with internal scoring system.
- Designed and developed with Mobile first approach.
- Uses mock API to fetch and list the multiple choice questions.
This web application uses these different technologies:
- ReactJS - Lightweight and Fast Front end library.
- MaterialUI - Front end styling library
- Redux - A Predictable State Container for JS Apps
- Mock API - An online platform that serves different endpoints and custom data.
- VS Code - One of the best code editors.
Clone the repo using the link or GitHub CLI
Install the dependencies and devDependencies and start the local server and head to the given server link.
cd quiz-app
npm i
npm start
Since the application is deployed in github pages the developer needs to look into the custom scripts predeploy and deploy to serve their own custom purposes.
Add the following scripts to the package.json(if not present)
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
and then deploy using this command
npm run deploy