{"id":14974946,"url":"https://github.com/m-elewa/vurtify","last_synced_at":"2025-06-24T06:05:58.198Z","repository":{"id":41134773,"uuid":"308339219","full_name":"m-elewa/vurtify","owner":"m-elewa","description":"Laravel 8 boilerplate project with Fortify + Vue 3 + Bootstrap 5","archived":false,"fork":false,"pushed_at":"2020-12-26T08:21:17.000Z","size":2697,"stargazers_count":60,"open_issues_count":1,"forks_count":30,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-08T08:48:56.758Z","etag":null,"topics":["boilerplate","bootstrap","bootstrap5","docker","fortify","jetstream","laravel","laravel8","sanctum","tailwind","vue","vue3"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m-elewa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-29T13:36:36.000Z","updated_at":"2025-03-14T21:23:21.000Z","dependencies_parsed_at":"2022-09-09T02:30:25.558Z","dependency_job_id":null,"html_url":"https://github.com/m-elewa/vurtify","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/m-elewa/vurtify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-elewa%2Fvurtify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-elewa%2Fvurtify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-elewa%2Fvurtify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-elewa%2Fvurtify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m-elewa","download_url":"https://codeload.github.com/m-elewa/vurtify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m-elewa%2Fvurtify/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261618105,"owners_count":23185091,"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":["boilerplate","bootstrap","bootstrap5","docker","fortify","jetstream","laravel","laravel8","sanctum","tailwind","vue","vue3"],"created_at":"2024-09-24T13:51:18.132Z","updated_at":"2025-06-24T06:05:58.165Z","avatar_url":"https://github.com/m-elewa.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vurtify\n\nVurtify is a Laravel 8 boilerplate project that gives you what you need to start up a web application with Fortify,  Vue 3, and Bootstrap 5.\n\n## Basic Features\n\n- Built on top of Fortify, Vue 3, and Bootstrap 5\n- Using Vuex and Axios for state management and Make XMLHttpRequests\n- Register system\n- Reset forgotten password\n- Update password\n- Update user info\n- Update profile photo\n- Logout other browser sessions\n- Delete account option\n- Email verification\n- Nice bootstrap 5 design with animations\n- Configurable sass design\n- Separate design for the guest section and the app section\n- Jetstream, tailwind, and livewire got removed completely from the project for simplicity\n- Clean and easy to understand code\n- Optional ready to use Docker environment to help with the development\n- Helpful Makefile commands\n- And more...\n\n## Preview\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20welcome.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20login.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20register.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20dashboard.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20profile-3.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20modal.png\" width=\"80%\" height=\"auto\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/m-elewa/images/main/Laravel%20-%20toast-3.png\" width=\"80%\" height=\"auto\"\u003e\n\u003c/p\u003e\n\n## Installation\n\nVia Composer Create-Project\n```\ncomposer create-project --prefer-dist m-elewa/vurtify blog\n```\n\nOr clone this repository\n```bash\n$ git clone https://github.com/m-elewa/vurtify.git\n```\n\nThen install the required dependency.\n\n```bash\n# copy the .env.example file to .env\n$ cp .env.example .env\n\n# Generate the application key\n$ php artisan key:generate\n\n# Install the PHP dependencies\n$ composer install\n\n# Install node modules\n$ npm install --legacy-peer-deps\n\n# Compile the js and sass code\n$ npm run dev\n\n# Migrate the application\n$ php artisan migrate\n\n# Create the symbolic link\n$ php artisan storage:link\n```\n\nOnce everything is done, start a development server\n\n```bash\nphp artisan serve\n```\n\nIf using Docker run `make up` to run all Docker containers\n\n## Great open-source projects used to help build Vurtify\n* [Laravel](https://github.com/laravel/laravel)\n* [Vue](https://github.com/vuejs/vue)\n* [Vuex](https://github.com/vuejs/vuex)\n* [Axios](https://github.com/axios/axios)\n* [Fortify](https://github.com/laravel/fortify)\n* [Bootstrap](https://github.com/twbs/bootstrap)\n* [Vue Toastification](https://github.com/Maronato/vue-toastification)\n* [NGINX](https://www.nginx.com/)\n* [MySQL](https://www.mysql.com/)\n* [PhpMyAdmin](https://www.phpmyadmin.net/)\n* [Mailhog](https://github.com/mailhog/MailHog)\n* [Portainer](https://www.portainer.io/)\n\n## To Do\n- Use Typescript\n- Add more Vue components\n- Add Two Factor Authentication\n- Add API support\n- Add Teams system\n\n## Issues\nIf you come across any issues please [report them here](https://github.com/m-elewa/vurtify/issues).\n\n## Contributing\nContributing to the Vurtify project are welcome, please feel free to make any pull requests, or email me a feature request you would like to see in the future at [mahmoud.elewa.999@gmail.com](mailto:mahmoud.elewa.999@gmail.com).\n\n## Security Vulnerabilities\nIf you discover a security vulnerability within Vurtify, please send an email to [mahmoud.elewa.999@gmail.com](mailto:mahmoud.elewa.999@gmail.com), or create a pull request if possible.\n\n## License\nVurtify is open-sourced software licensed under the [MIT license](https://github.com/m-elewa/vurtify/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-elewa%2Fvurtify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm-elewa%2Fvurtify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm-elewa%2Fvurtify/lists"}