I have to written a Go server that implements REST API and interacts with the database at the backend. The front end is a React application that is an interactive quiz.
Date: 26th September, 2018. Place: Room 260, Bakul NiVas, IIIT Hyderabad. Owner: Sarthak Singh
- Registration and login for users
- Multiple genre of quizzes
- Multiple types of questions, image, video and MCQ.
- Leaderboard
- Admin privileges to one user. He has privilege to do the following:
- View/Create/Delete quizzes
- Create/Delete/Edit questions/options in each quiz
- View all users
- Delete users
- Login through Google handle.
- Running the react app:
- Go to the "react-app" folder and run yarn start
yarn start
- Running the Go server:
- Go to the go/src folder and run
go runcommand go run API.goThe app will start on your default browser.
- Go to the go/src folder and run