View Live · Report Bug · Request Feature
Qwiz is a web app built on laravel that allows pub style quizzes. After the UK doing into lockdown on 23rd March 2020, the need for virtual pub style quizzes grew within my social circles, to the point where pen and paper no longer cut it. This is my attempt at keeping people connected.
The simple steps below will get you up and running with your own quizzes in no time.
- Clone the repo
git clone https://github.com/ThomasJones4/lockdownquiz.git
- Install NPM packages
npm install
- Install Composer packages
composer install
- Create a fresh
.env
file
cp .env.example .env
- Generate an encryption key
php artisan key:generate
- Add database credentials and update
.env
file
DB_CONNECTION=mysql
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
- Migrate the database
php artisan migrate
- Create an AWS S3 bucket and update
.env
file
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
AWS_BUCKET=
AWS_URL=
Once a quiz has been created a user can create their own quiz, either from their own question or by using the random question genarator.
Participants can join by following a quiz masters join link both /join/{your quiz id}
and /🎲/{your quiz id}
. Once logged in or registered, they can join by using the 8 digit code from the quiz master (keep this secret as it prevents unwanted guests).
Every quiz must end with a results screen to allow the quiz master to mark the answers, however the quiz master can add breaks at any point though out the quiz (15 questions in? 👀🍻) and mark the question so far.
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Thomas Jones - LinkedIn - thomasj2015@outlook.com
Project Link: https://github.com/ThomasJones4/lockdownquiz
- OpenTDB by PIXELTAIL GAME LLC. Used under licence CC BY 4.0
- Img Shields
- Font Awesome
- Argon
- Laravel Dusk