{"id":14974809,"url":"https://github.com/eevan7a9/e-commerce-fish-store","last_synced_at":"2025-10-27T10:30:54.829Z","repository":{"id":38163339,"uuid":"219700521","full_name":"eevan7a9/e-commerce-fish-store","owner":"eevan7a9","description":"Fullstack Single-page-application e-commerce  integrated with Stripe API","archived":false,"fork":false,"pushed_at":"2023-03-04T05:07:05.000Z","size":3264,"stargazers_count":3,"open_issues_count":15,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-09-28T19:23:43.497Z","etag":null,"topics":["e-commerce","js","laravel6","php","vuejs"],"latest_commit_sha":null,"homepage":"http://onlinestorefish.rf.gd/","language":"Vue","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/eevan7a9.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":"2019-11-05T08:59:38.000Z","updated_at":"2024-04-26T05:13:36.000Z","dependencies_parsed_at":"2023-02-06T11:46:18.896Z","dependency_job_id":null,"html_url":"https://github.com/eevan7a9/e-commerce-fish-store","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eevan7a9%2Fe-commerce-fish-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eevan7a9%2Fe-commerce-fish-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eevan7a9%2Fe-commerce-fish-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eevan7a9%2Fe-commerce-fish-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eevan7a9","download_url":"https://codeload.github.com/eevan7a9/e-commerce-fish-store/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219861563,"owners_count":16555990,"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":["e-commerce","js","laravel6","php","vuejs"],"created_at":"2024-09-24T13:51:06.691Z","updated_at":"2025-10-27T10:30:49.329Z","avatar_url":"https://github.com/eevan7a9.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Single-Vendor E-Commerce Fish Store\n\nThis project is a single-vendor e-commerce platform designed for selling fish and seafood products. The application is built with a Laravel API backend and a Quasar Vue.js frontend, using TypeScript for type safety and Pinia for state management.\n\nWith flexible architecture that separates frontend and backend services, making it suitable for future enhancements and third-party integrations.\n\n| Admin Products | Checkout | \n|---------|---------|\n| ![Admin Products](screenshot/products-page.webp) | ![Checkout](screenshot/checkout.webp) | \n\n## Tech Stack\n- **Frontend**: [Quasar (Vue 3)](https://quasar.dev/)\n- **Backend**: [Laravel 11+](https://laravel.com/)\n- **Language**: Typescript 5.7+, Javascript \u0026 PHP 8.2 \n- **Database**: Mysql, Postgress.\n\n## Technologies \u0026 Tools\n- Web SPA \u0026 Android/IOS - [Vite](https://vite.dev/) \u0026 [Capacitor](https://capacitorjs.com/)\n- State Management [Pinia](https://pinia.vuejs.org/)\n- internationalization [i18next](https://www.i18next.com/)\n- CSS framework [TailwindCss](https://tailwindcss.com/)\n- Card Payment [Stripe API](https://docs.stripe.com/)\n- Charts [Google Charts](https://developers.google.com/chart) \n- Icons [MDI](https://pictogrammers.com/library/mdi/) \u0026 [Google Icons](https://fonts.google.com/icons)\n- Illustrations [Freepik](https://www.freepik.com/) \u0026 [Undraw](https://undraw.co/)\n- Animation [GSAP](https://gsap.com/)\n\n## Configure Frontend:\nnavigate to **frontend-fish-store/** open terminal and \n\n- install [Quasar CLI](https://quasar.dev/start/quasar-cli)\n\n- install dependencies run `npm install`\n\n#### Setup Frontend Environment\n\n  1. Create `.env` use `.env.example` as reference.\n\n  2. Set server api url on `.env`.\n\n          SERVER_API_URL='http://localhost:8000/api'\n\n  3. Add stripe publish_key on `.env`\n\n          STRIPE_PK=\"publish-key\"\n\n#### Initialize Frontend\n\n- run to serve\n\n  `quasar dev`\n\n- the default URL would be http://localhost:8888/\n  \n\n## Configure Backend:\nnavigate to **backend-fish-store/** open terminal and \n- install requirements:\n  \n  1. [PHP 8.3+](https://www.php.net/manual/en/install.php) \n  2. [Composer](https://getcomposer.org/) \n  3. [Mysql Server](https://www.mysql.com/downloads/)\n\n\n#### Setup Backend Environment\n\n  1. Create `.env` use `.env.example` as reference.\n\n  2. Add Database and Stripe Keys.\n\n      ```\n      DB_CONNECTION=mysql\n      DB_HOST=127.0.0.1\n      DB_PORT=3306\n      DB_DATABASE=database_name\n      DB_USERNAME=root\n      DB_PASSWORD=database_password\n      ```\n\n      Add Stripe [STRIPE SECRET](https://dashboard.stripe.com/apikeys)\n\n      ```\n      STRIPE_SECRET='secret_key'\n      ```\n  3. Add Initial Admin Credentials (Update the Password after):\n      ```\n      SEEDER_ADMIN_EMAIL=admin@email.com\n      SEEDER_ADMIN_PASSWORD=password\n      ```\n#### Install Dependencies\nopen terminal and run\n\n- install dependencies:\n\n  `composer install`\n\n- add database migrations\n\n  `php artisan migrate`\n\n- generate key\n\n  `php artisan key:generate`\n\n#### Seed Admin\n  - Run to seed Admin `php artisan db:seed --class=AdminSeeder`\n\n#### Initialize backend\n\n`php artisan serve`\n\n#### Add Dummy Data (Optional):\n\n- Add database dummies\n\n  `php artisan db:seed`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feevan7a9%2Fe-commerce-fish-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feevan7a9%2Fe-commerce-fish-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feevan7a9%2Fe-commerce-fish-store/lists"}