{"id":15177139,"url":"https://github.com/apfirebolt/nuxt3-ecommerce-using-vuetify","last_synced_at":"2026-02-19T14:31:06.284Z","repository":{"id":233159829,"uuid":"786174152","full_name":"Apfirebolt/nuxt3-ecommerce-using-vuetify","owner":"Apfirebolt","description":"A Ecommerce website using Nuxt 3 and Vuetify","archived":false,"fork":false,"pushed_at":"2024-04-16T18:53:58.000Z","size":179,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-12T13:37:42.756Z","etag":null,"topics":["ecommerce","myntra","nuxt-boilerplate","nuxt3","nuxt3-starter","nuxtjs","pinia","vue3","vuetify3"],"latest_commit_sha":null,"homepage":"","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/Apfirebolt.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}},"created_at":"2024-04-13T16:37:45.000Z","updated_at":"2024-04-16T16:15:59.000Z","dependencies_parsed_at":"2024-04-14T07:59:40.150Z","dependency_job_id":"cd460f44-0c96-401b-9d37-24a3f637b296","html_url":"https://github.com/Apfirebolt/nuxt3-ecommerce-using-vuetify","commit_stats":null,"previous_names":["apfirebolt/nuxt3-ecommerce-using-vuetify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Apfirebolt/nuxt3-ecommerce-using-vuetify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apfirebolt%2Fnuxt3-ecommerce-using-vuetify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apfirebolt%2Fnuxt3-ecommerce-using-vuetify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apfirebolt%2Fnuxt3-ecommerce-using-vuetify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apfirebolt%2Fnuxt3-ecommerce-using-vuetify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Apfirebolt","download_url":"https://codeload.github.com/Apfirebolt/nuxt3-ecommerce-using-vuetify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apfirebolt%2Fnuxt3-ecommerce-using-vuetify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011451,"owners_count":26084947,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"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":["ecommerce","myntra","nuxt-boilerplate","nuxt3","nuxt3-starter","nuxtjs","pinia","vue3","vuetify3"],"created_at":"2024-09-27T14:02:44.573Z","updated_at":"2025-10-12T13:37:43.130Z","avatar_url":"https://github.com/Apfirebolt.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nuxt 3 Ecommerce\n\n[![Nuxt](https://img.shields.io/badge/Nuxt-3.x-green.svg)](https://nuxtjs.org)\n[![Vue](https://img.shields.io/badge/Vue-3.x-orange.svg)](https://vuejs.org)\n[![Tailwind CSS](https://img.shields.io/badge/Tailwind%20CSS-2.x-blue.svg)](https://tailwindcss.com)\n[![Vuetify](https://img.shields.io/badge/Vuetify-3.x-cyan.svg)](https://vuetifyjs.com)\n\nThis is an Ecommerce web-app I was experimenting with while learning Nuxt 3. It uses one of the APIs I created earlier in Django using dataset from this popular Ecommerce store in India called \"Myntra.com\".\n\nLook at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.\n\nHere's the link of the back-end API used for this project \n- https://github.com/Apfirebolt/Myntra_ecommerce_api_in_django\n- Created in Python using Django framework with Postgres as database.\n\n## Features\n\nAt the time of writing this it contains following prominent features :-\n\n- Items page with pagination, shows info such as price, discount, link to the actual product.\n\n- Back-end sorting and filtering applied using Django filter-backends.\n\n- Uses Vuetify for UI components.\n\n## Screenshots\n\nWould be added soon\n\n## Setup\n\nMake sure to install the dependencies:\n\n```bash\n# npm\nnpm install\n\n# pnpm\npnpm install\n\n# yarn\nyarn install\n\n# bun\nbun install\n```\n\n## Development Server\n\nStart the development server on `http://localhost:3000`:\n\n```bash\n# npm\nnpm run dev\n\n# pnpm\npnpm run dev\n\n# yarn\nyarn dev\n\n# bun\nbun run dev\n```\n\n## Production\n\nBuild the application for production:\n\n```bash\n# npm\nnpm run build\n\n# pnpm\npnpm run build\n\n# yarn\nyarn build\n\n# bun\nbun run build\n```\n\nLocally preview production build:\n\n```bash\n# npm\nnpm run preview\n\n# pnpm\npnpm run preview\n\n# yarn\nyarn preview\n\n# bun\nbun run preview\n```\n\n\nCheck out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapfirebolt%2Fnuxt3-ecommerce-using-vuetify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapfirebolt%2Fnuxt3-ecommerce-using-vuetify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapfirebolt%2Fnuxt3-ecommerce-using-vuetify/lists"}