{"id":49360459,"url":"https://github.com/coders-tm/qaravel","last_synced_at":"2026-04-27T16:02:21.010Z","repository":{"id":56806615,"uuid":"523777955","full_name":"coders-tm/qaravel","owner":"coders-tm","description":"Qaravel is a Combination of Laravel and Quasar","archived":false,"fork":false,"pushed_at":"2024-12-13T13:38:12.000Z","size":85241,"stargazers_count":15,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-24T05:41:11.198Z","etag":null,"topics":["laravel","laravel-boilerplate","laravel-framework","quasar","quasar-framework","quasarframework","recurring-billing","spa","stripe","subscription-boilerplate","user-management","user-management-system","vite","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://qaravel.coderstm.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coders-tm.png","metadata":{"files":{"readme":"README.md","changelog":"change.log.md","contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":"dipaksarkar","patreon":null,"open_collective":"dipaksarkar","ko_fi":"dipaksarkar","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2022-08-11T15:37:13.000Z","updated_at":"2025-08-17T20:02:29.000Z","dependencies_parsed_at":"2025-08-13T12:36:08.364Z","dependency_job_id":null,"html_url":"https://github.com/coders-tm/qaravel","commit_stats":null,"previous_names":["coders-tm/qaravel"],"tags_count":3,"template":true,"template_full_name":null,"purl":"pkg:github/coders-tm/qaravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coders-tm%2Fqaravel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coders-tm%2Fqaravel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coders-tm%2Fqaravel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coders-tm%2Fqaravel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coders-tm","download_url":"https://codeload.github.com/coders-tm/qaravel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coders-tm%2Fqaravel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32343571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","laravel-boilerplate","laravel-framework","quasar","quasar-framework","quasarframework","recurring-billing","spa","stripe","subscription-boilerplate","user-management","user-management-system","vite","vue","vuejs"],"created_at":"2026-04-27T16:02:20.199Z","updated_at":"2026-04-27T16:02:20.984Z","avatar_url":"https://github.com/coders-tm.png","language":"JavaScript","funding_links":["https://github.com/sponsors/dipaksarkar","https://opencollective.com/dipaksarkar","https://ko-fi.com/dipaksarkar"],"categories":[],"sub_categories":[],"readme":"# [Qaravel (qaravel)](https://qaravel.coderstm.com/)\n\n[Qaravel](https://qaravel.coderstm.com/) is a Combination of Laravel and Quasar.\n\n\u003cp\u003e\n    \u003ca href=\"https://qaravel.coderstm.com/\" target=\"_blank\"\u003e\n        \u003cimg src=\"./intro.gif\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## 1. Add FontAwesome pro key\n\nWe used Fontawesome pro version.\n\n## 2. Install the dependencies\n\n```bash\nyarn\n```\n\n## 3. Add Configuration\n\n```bash\ncp .env.example .env\ncp .env.frontend .env.frontend.dev\n```\n\n## 4. Configuration for Laravel Sanctum\n\nWe have used Laravel Sanctum SPA authentication. Laravel Sanctum provides a featherweight\nauthentication system for SPAs (single page applications), mobile applications, and simple, token\nbased APIs. Sanctum allows each user of your application to generate multiple API tokens for their\naccount. These tokens may be granted abilities / scopes which specify which actions the tokens are\nallowed to perform. Please check laravel default\n[sanctum configuration](https://laravel.com/docs/9.x/sanctum#api-token-authentication)\n\n## 5. Migrate the Database\n\nAdd your database details on .env\n\n```\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=qaravel\nDB_USERNAME=root\nDB_PASSWORD=toor\n```\n\n```bash\nyarn fresh:dev\n```\n\n### Steps for Windows User\n\nPress Win key + R \u003e Paste following in the box \u003e Press Enter\n\n```\nc:\\windows\\system32\\drivers\\etc\\hosts\n```\n\nThen add thoes line at the bottom and save as admin.\n\n```\n127.0.0.1   api.qaravel.gomedia\n127.0.0.1   app.qaravel.gomedia\n```\n\n### 7. Start the app in development mode (hot-code reloading, error reporting, etc.)\n\n\u003e Only for windows user\n\n```\nphp artisan serve --host=api.qaravel.gomedia  --port=80\n```\n\nChange your api url from .env.frontend.dev\n\n```\nAPI_URL=http://api.qaravel.gomedia\n```\n\n```bash\nyarn start:web\n```\n\n### Build the app for production\n\n```bash\nyarn build:web\n```\n\n### Lint the files\n\n```bash\nyarn run lint\n```\n\n### How to deply it in local?\n\nValet is a Laravel development environment for Mac minimalists. No Vagrant, no /etc/hosts file. You\ncan even share your sites publicly using local tunnels. Yeah, we like it too. We used valet to\ndeploy this project. Check the configuration of [Laravel Valet](https://laravel.com/docs/9.x/valet)\n\n### How to deply it in web?\n\nFirst build your app then move all files in server and run following command\n\n```bash\ncp .htaccess.example .htaccess\n```\n\n### Customize the configuration\n\nSee [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js).\n\n### Support me\n\nIf you find my work helpful, or you want to support the development, star the repo or buy me a coffee:\n\n[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/dipaksarkar)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoders-tm%2Fqaravel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoders-tm%2Fqaravel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoders-tm%2Fqaravel/lists"}