{"id":14975120,"url":"https://github.com/fordiquez/laravel-store","last_synced_at":"2025-07-18T08:34:39.151Z","repository":{"id":168069743,"uuid":"592089505","full_name":"fordiquez/laravel-store","owner":"fordiquez","description":"E-commerce project with Laravel 11, Vue 3 Typescript and Inertia.js","archived":false,"fork":false,"pushed_at":"2024-03-30T16:14:10.000Z","size":5949,"stargazers_count":79,"open_issues_count":0,"forks_count":24,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-08T09:06:10.694Z","etag":null,"topics":["inertiajs","laravel","laravel-ecomerce","laravel10","tailwindcss","vite","vue3","vue3-composition-api","vuejs"],"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/fordiquez.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-22T21:52:45.000Z","updated_at":"2025-03-14T09:32:46.000Z","dependencies_parsed_at":"2024-01-28T14:30:27.628Z","dependency_job_id":"0ab93765-b651-46a2-96cd-11165421bd01","html_url":"https://github.com/fordiquez/laravel-store","commit_stats":{"total_commits":50,"total_committers":3,"mean_commits":"16.666666666666668","dds":"0.33999999999999997","last_synced_commit":"7f5028385fe0827ebe8f506ff25ea72472545b77"},"previous_names":["fordiquez/laravel-store"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fordiquez/laravel-store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fordiquez%2Flaravel-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fordiquez%2Flaravel-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fordiquez%2Flaravel-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fordiquez%2Flaravel-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fordiquez","download_url":"https://codeload.github.com/fordiquez/laravel-store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fordiquez%2Flaravel-store/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265728868,"owners_count":23818731,"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":["inertiajs","laravel","laravel-ecomerce","laravel10","tailwindcss","vite","vue3","vue3-composition-api","vuejs"],"created_at":"2024-09-24T13:51:32.634Z","updated_at":"2025-07-18T08:34:39.105Z","avatar_url":"https://github.com/fordiquez.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://travis-ci.org/laravel/framework\"\u003e\u003cimg src=\"https://travis-ci.org/laravel/framework.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/laravel/framework\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/laravel/framework\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/laravel/framework\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# E-commerce project with Laravel 10, Vue 3 and Inertia.js\n\n## Must have requirements\n\n-   **Docker \u0026 Docker Compose.**\n\n## Docker installation workflow\n\n### 1. Clone this repository to your local folder\n\n```bash\ngit clone git@github.com:fordiquez/laravel-store.git\n```\n\n```bash\ncd laravel-store\n```\n\n### 2. Create .env\n\n```bash\ncp .env.example .env\n```\n\n### 3. Setup .env variables\n\n#### 3.1 Set up base url for your application\n\n```dotenv\nAPP_URL=\n```\n\n#### 3.2 Set up your database credentials\n\n```dotenv\nDB_CONNECTION=sqlite\n#DB_HOST=mysql\n#DB_PORT=3306\n#DB_DATABASE=brandford\n#DB_USERNAME=root\n#DB_PASSWORD=root\n```\n\n#### 3.3 Set up your cache \u0026 session driver, filesystem disk \u0026 queue connection\n\n```dotenv\nCACHE_DRIVER=database\nFILESYSTEM_DISK=public\nQUEUE_CONNECTION=database\nSESSION_DRIVER=database\n```\n\n#### 3.3 Set up mail SMTP options\n\n```dotenv\nMAIL_MAILER=\nMAIL_HOST=\nMAIL_PORT=\nMAIL_USERNAME=\nMAIL_PASSWORD=\nMAIL_ENCRYPTION=\nMAIL_FROM_ADDRESS=\nMAIL_FROM_NAME=\n```\n\n#### 3.4 Set up `multiavatar` API key\n\n```dotenv\nMULTIAVATAR_API_KEY=\n```\n\n#### 3.5 Set up `Countries States Cities` API key\n\n```dotenv\nCSC_API_KEY=\n```\n\n#### 3.7 Setup `Stripe` keys\n\n```dotenv\nSTRIPE_KEY=\nSTRIPE_SECRET=\nSTRIPE_WEBHOOK_SECRET=\n```\n\n### 4. Install all composer \u0026 npm dependencies\n\n```bash\ncomposer install\n```\n\n```bash\nnpm install\n```\n\n### 5. Docker settings\n\n```bash\ndocker-compose up --build -d\n```\n\n```bash\ndocker exec -it store-laravel php artisan horizon\n```\n\n```bash\ndocker exec -it store-laravel /bin/bash\n```\n\n### 6. Run artisan commands\n\n```bash\nphp artisan key:generate\n```\n\n```bash\nphp artisan storage:link\n```\n\n```bash\nphp artisan migrate:fresh --seed\n```\n\n```bash\nphp artisan shield:install --fresh\n```\n\n```bash\nphp artisan db:seed --class=RoleSeeder\n```\n\n```bash\nphp artisan optimize:clear\n```\n\n### 7. Run dev server\n\n```bash\nnpm run dev\n```\n\n### 8. Run stripe webhook\n\n```bash\nstripe login\n```\n\n```bash\nstripe listen --forward-to laravel-store.test/stripe/webhook\n```\n\n### 9. Edit hosts file\n\n**Path for Windows:**\n```\nC:\\Windows\\System32\\drivers\\etc\n```\n\n**Add your application domain:**\n\n```ini\n127.0.0.1       laravel-store.test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffordiquez%2Flaravel-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffordiquez%2Flaravel-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffordiquez%2Flaravel-store/lists"}