https://github.com/john-weeks-dev/amazon-clone
This is a Amazon Clone made with Vue 3, Laravel, Tailwind CSS, Stripe, and Inertia JS
https://github.com/john-weeks-dev/amazon-clone
amazon amazon-clone cart javascript laravel php pinia pinia-plugin-persist stripe stripe-payments tailwind tailwindcss vue3 vue3-composition-api
Last synced: 2 months ago
JSON representation
This is a Amazon Clone made with Vue 3, Laravel, Tailwind CSS, Stripe, and Inertia JS
- Host: GitHub
- URL: https://github.com/john-weeks-dev/amazon-clone
- Owner: John-Weeks-Dev
- Created: 2023-01-09T08:21:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-21T08:39:13.000Z (over 2 years ago)
- Last Synced: 2025-03-24T04:12:13.955Z (3 months ago)
- Topics: amazon, amazon-clone, cart, javascript, laravel, php, pinia, pinia-plugin-persist, stripe, stripe-payments, tailwind, tailwindcss, vue3, vue3-composition-api
- Language: PHP
- Homepage: https://youtube.com/watch?v=SAUKvG6ILSs
- Size: 4.12 MB
- Stars: 30
- Watchers: 1
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Amazon Clone (amazon-clone)
### Tutorial series on how to build this
If you'd like a step by step guide on how to build this just **CLICK THE IMAGE BELOW**
[](https://www.youtube.com/watch?v=SAUKvG6ILSs)
Come and check out my YOUTUBE channel for lots more tutorials -> https://www.youtube.com/@johnweeksdev
**LIKE**, **SUBSCRIBE**, and **SMASH THE NOTIFICATION BELL**!!!
## App Setup
```
git clone https://github.com/John-Weeks-Dev/amazon-clone.gitcomposer install
cp .env.example .env
php artisan cache:clear
composer dump-autoload
php artisan key:generate
composer require laravel/breeze --dev
php artisan breeze:install vue --inertia
php artisan serve
```Create the DB
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=amazon_clone
DB_USERNAME=root
DB_PASSWORD=
```
Now migrate your DB
```
php artisan migratephp artisan db:seed
```Now go to https://stripe.com/en-gb-us
Create a public and private KEY.
Add your new PRIVATE API KEY to **CheckoutController.php**

And **Checkout**

Connect Mailtrap
Add the details to **.env**
Now run this command to start the project
```
npm inpm run dev
```You should be good to go!
# Application Images













