Shahzayb / vuquiz

Vu Quiz Demo Application

Home Page:https://vuquiz.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VU Quiz

VU Quiz is a demo application, same as the Virtual University of Pakistan's quiz system. You can take quiz in any VU's subjects you like, for practice or for fun.

VU Quiz Demo

Running vuquiz locally

vuquiz is a Spring Boot application built using Maven. You can build a jar file and run it from the command line:

git clone https://github.com/shahzayb/vuquiz.git
cd vuquiz
./mvnw package
java -jar target/*.jar

You can then access vuquiz here: http://localhost:8080/

Or you can run it from Maven directly using the Spring Boot Maven plugin. If you do this it will pick up changes that you make in the project immediately (changes to Java source files require a compile as well - most people use an IDE for this):

./mvnw spring-boot:run

By default active profile will be "dev" and this profile will load initial data for application

In case you find a bug/suggested improvement for Spring vuquiz

My issue tracker is available here: https://github.com/shahzayb/vuquiz/issues

Working with vuquiz in your IDE

Prerequisites

The following items should be installed in your system:

Steps:

  1. On the command line
git clone https://github.com/shahzayb/vuquiz.git
  1. Inside Eclipse or STS
File -> Import -> Maven -> Existing Maven project

Run the application main method by right clicking on app and choosing Run As -> Java Application.

  1. Inside IntelliJ IDEA

In the main menu, choose File -> Open and select the vuquiz pom.xml. Click on the Open button.

Then run configuration named VuQuizDemoApplication should have been created for you if you're using a recent Ultimate version. Otherwise, run the application by right clicking on the VuQuizDemoApplication main class and choosing Run 'VuQuizDemoApplication'.

Visit http://localhost:8080 in your browser.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

Vu Quiz Demo Application

https://vuquiz.herokuapp.com/

License:MIT License


Languages

Language:Java 58.8%Language:HTML 30.7%Language:CSS 10.5%