{"id":20436492,"url":"https://github.com/codeeshop-oc/laravel-vue-boilerplate","last_synced_at":"2025-05-08T18:31:21.931Z","repository":{"id":107807049,"uuid":"428918229","full_name":"codeeshop-oc/laravel-vue-boilerplate","owner":"codeeshop-oc","description":"https://github.com/rappasoft/laravel-boilerplate","archived":true,"fork":false,"pushed_at":"2021-11-17T06:28:56.000Z","size":340,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-05T06:44:10.877Z","etag":null,"topics":[],"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/codeeshop-oc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-17T05:20:29.000Z","updated_at":"2023-05-30T10:49:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"6ce0b39c-bb2a-47f2-b903-6a13a408deed","html_url":"https://github.com/codeeshop-oc/laravel-vue-boilerplate","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":"alefesouza/laravel-vue-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeeshop-oc%2Flaravel-vue-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeeshop-oc%2Flaravel-vue-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeeshop-oc%2Flaravel-vue-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeeshop-oc%2Flaravel-vue-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeeshop-oc","download_url":"https://codeload.github.com/codeeshop-oc/laravel-vue-boilerplate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253127026,"owners_count":21858175,"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":[],"created_at":"2024-11-15T08:44:16.277Z","updated_at":"2025-05-08T18:31:21.898Z","avatar_url":"https://github.com/codeeshop-oc.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Vue Boilerplate\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"logo.png\" /\u003e\n\u003c/p\u003e\n\nA Laravel 8 Single Page Application boilerplate using Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass and Pug with:\n\n* A users CRUD if the current user is an admin written in RESTful and GraphQL.\n* i18n for English, Portuguese and Spanish, based on browser language settings.\n* Authentication using Laravel Sanctum.\n* WebSockets with Laravel Echo and Pusher.\n* Working service worker with Workbox for better PWA development.\n* Dockerfile configured with PHP 7.4, Node.js 12 and Composer, with MySQL and phpMyAdmin on Docker Compose.\n\nYou can check it live [on this website](https://lvb.as.dev), with the credentials:\n\nAdmin user\n\n    E-mail: admin@example.com\n    Password: admin\n\nNormal user\n\n    E-mail: normal@example.com\n    Password: normal\n\nNotice that all the changed data on that website sample, such as password and CRUD actions, won't be stored.\n\n## Main dependencies\n\nFront-end:\n\n* [Vue](https://github.com/vuejs/vue)\n* [VueRouter](https://github.com/vuejs/vue-router)\n* [Vuex](https://github.com/vuejs/vuex)\n* [vue-apollo](https://github.com/vuejs/vue-apollo)\n* [vuex-i18n](https://github.com/dkfbasel/vuex-i18n)\n* [Bootstrap 4](https://github.com/twbs/bootstrap)\n* [BootstrapVue](https://github.com/bootstrap-vue/bootstrap-vue)\n* [Workbox](https://github.com/GoogleChrome/workbox)\n* [TypeScript](https://github.com/microsoft/typescript)\n* [Pug](https://github.com/pugjs/pug)\n* [Sass](https://github.com/sass/node-sass)\n* [Laravel Echo](https://github.com/laravel/echo)\n* [Laravel Mix](https://github.com/JeffreyWay/laravel-mix)\n\nThe TypeScript code tries to follow the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript), the linters are already included and configured.\n\nBack-end:\n\n* [Laravel](https://github.com/laravel/laravel)\n* [Laravel GraphQL](https://github.com/rebing/graphql-laravel)\n* [Laravel Sanctum](https://github.com/laravel/sanctum)\n* [laravel-vue-i18n-generator](https://github.com/alefesouza/laravel-vue-i18n-generator)\n\n## Steps to run it:\n\nRemember to search for \"TODO change\" on the files to change example code.\n\n### With Docker\n\nRun:\n\n    docker-compose up --build\n\nAfter it starts, just on the first time, run on another terminal:\n\n    docker exec laravel-vue-boilerplate bash -c \"composer start \u0026\u0026 npm start\"\n\nThe application will be available on http://localhost:8000 and the phpMyAdmin on http://localhost:8081\n\n### Common way\n\nRename the .env.example file to .env, and fill it with your local info, then:\n\nInstall PHP and JavaScript dependencies:\n\n    composer install\n    npm install\n\nGenerate Laravel keys:\n\n    php artisan key:generate\n\nGenerate i18n string for Vue, based on Laravel i18n files:\n\n    php artisan vue-i18n:generate\n\nMigrate and seed the database:\n\n    php artisan migrate --seed\n\nCompile all the front-end stuff:\n\n    npm run prod\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeeshop-oc%2Flaravel-vue-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeeshop-oc%2Flaravel-vue-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeeshop-oc%2Flaravel-vue-boilerplate/lists"}