{"id":21036278,"url":"https://github.com/arafatkn/quizzy","last_synced_at":"2025-05-15T14:31:49.637Z","repository":{"id":46365359,"uuid":"414869056","full_name":"arafatkn/quizzy","owner":"arafatkn","description":"Quiz website built with Laravel.","archived":false,"fork":false,"pushed_at":"2021-10-27T17:11:51.000Z","size":1800,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-05T17:51:02.380Z","etag":null,"topics":["laravel","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arafatkn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-08T06:17:58.000Z","updated_at":"2023-02-05T08:15:28.000Z","dependencies_parsed_at":"2022-09-09T22:03:42.682Z","dependency_job_id":null,"html_url":"https://github.com/arafatkn/quizzy","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arafatkn%2Fquizzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arafatkn%2Fquizzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arafatkn%2Fquizzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arafatkn%2Fquizzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arafatkn","download_url":"https://codeload.github.com/arafatkn/quizzy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225357758,"owners_count":17461708,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","php"],"created_at":"2024-11-19T13:19:22.578Z","updated_at":"2024-11-19T13:19:23.303Z","avatar_url":"https://github.com/arafatkn.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Quizzy - Online Quiz System\n\n\n![StyleCI Status](https://github.styleci.io/repos/414869056/shield?style=flat \"StyleCI\")\n[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/arafatkn/quizzy/badges/quality-score.png)](https://scrutinizer-ci.com/g/arafatkn/quizzy/)\n[![Build Status](https://scrutinizer-ci.com/g/arafatkn/quizzy/badges/build.png)](https://scrutinizer-ci.com/g/arafatkn/quizzy/build-status/)\n\n***\nCurrent Version: v0.2.0\n\n### Technologies used so far...\n#### Frameworks, Libraries, Packages etc...\n- [Laravel 8](https://laravel.com) as backend framework.\n- MySQL as database.\n- Redis for cache \u0026 queue.\n- [PHPUnit](https://phpunit.de/) for Testing.\n- [Bootstrap 5](https://getbootstrap.com/docs/5.0/getting-started/introduction/) for Frontend.\n- [VueJS](https://vuejs.org/) and [Axios](https://axios-http.com/) in Quiz Attempt Page.\n- [Laravel Horizon](https://laravel.com/docs/master/horizon)\n- [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar)\n- [Laravel Valet](https://laravel.com/docs/master/valet) for local development.\n- [Laravel Settings](https://packagist.org/packages/arafatkn/laravel-settings) by Me\n- [Predis](https://github.com/predis/predis) for redis connection.\n- [Sentry](https://sentry.io/) for error tracking.\n- [Faker](https://fakerphp.github.io/) for generating fake data in testing.\n\n### Followed Standards\n* PSR-4 Autoloading Standard.\n* PSR-2 Coding Standard.\n\n### Live Demo\n**[Live Demo Link](https://quizzy.arafatkn.com)**\n\n### Requirements\n- PHP 7.3 minimum\n- Composer\n- MySQL or MariaDB\n- NodeJS\n  - If you want to update the style or javascript, you need to recompile.\n- PCNTL PHP Extension.\n\n### Installation Process\n\n#### Copy .env.example to .env\n\n```bash\nphp -r \"file_exists('.env') || copy('.env.example', '.env');\"\n```\n\n#### Key Generate\n\n```bash\nphp artisan key:generate\n```\n\n#### Update Environment Values\nEdit `.env` file and update the values related to mysql config and site settings.\n\n#### Install composer packages\n\n```bash\ncomposer install\n```\n\n#### Install Node Packages \n(skip this step if you do not want to update style and javascript)\n\n```bash\nnpm install\n```\n\n#### Migrate Database\n\n```bash\nphp artisan migrate\n```\n\n#### Install settings and admin details (Coming Soon)\n\n```bash\nphp artisan site:install\n```\n\nFollow the steps shown in your terminal and complete the installation process.\n\n#### Setup Author Digest\nYou can send digest email to authors manually by running below command.\n\n```bash\nphp artisan send:author-digest\n```\n\nHowever, the author digest has been scheduled to be run in 10 AM every day. You need to run the scheduler using crontab.\n\n```bash\nphp artisan schedule:run\n```\n\nThe digest will be processed in background. You need to run `Horizon` in background for the best service. However, you can switch to database or simple redis based queue processing also.\n\n```bash\nphp artisan horizon\n```\n\nAlternatively, for simple `redis` or `database` based queue processing, run-\n\n```bash\nphp artisan queue:work\n```\n\nFor switching to `database` based queue system, you need to update below ENV variables-\n\n```dotenv\nQUEUE_CONNECTION=database\n```\n\nFor switching from queue system to instant processing, you need to update below ENV variables-\n\n```dotenv\nQUEUE_CONNECTION=sync\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farafatkn%2Fquizzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farafatkn%2Fquizzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farafatkn%2Fquizzy/lists"}