Skip to content

Commit

Permalink
Payment Page Stripe
Browse files Browse the repository at this point in the history
  • Loading branch information
AadishJain249 committed Oct 9, 2022
1 parent 8dafbee commit 728838b
Show file tree
Hide file tree
Showing 72 changed files with 74,592 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Downloads/Amazon-Clone/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.cache
build
**/node_modules/**
5 changes: 5 additions & 0 deletions Downloads/Amazon-Clone/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "react-http-90296"
}
}
2 changes: 2 additions & 0 deletions Downloads/Amazon-Clone/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
.env
71 changes: 71 additions & 0 deletions Downloads/Amazon-Clone/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Amazon Clone (e-commerce)
<br>
Amazon Clone is a project where you can create a product, add the products to the cart, do a payment<br>
The design is based on Amazon.


# Features
- Add functional rating products.
- Email Authentication using firebase
- Product details page.


# How to install and run the project
- Do npm i for this project after installing all dependencies and do npm start
- .env is needed to run the application locally (.env in this project is for firebase)

## Download and Instalation

You can clone the project using the following command in your terminal:

```
git clone https://github.com/AadishJain249/Amazon-Clone.git
```

Now, cd amazon-clone/ and before to start, you need to install the dependencies:

```
npm install or npm i
```

or

```
yarn install
```

## Available Scripts

In the project directory, you can run:

```
npm start
```

Runs the app in the development mode.

Open http://localhost:3000 to view it in the browser.

# How to contribute
- If you want to contribute please check the open issues https://github.com/AadishJain249/Amazon-Clone/issues

# Contributing
- Amazon clone is MIT licensed and accepts contributions via GitHub pull requests

## Getting Started
- Fork the repository on GitHub.

# Contribution Flow

- Make commits of ur changes.
- Make sure your commit messages are in the proper format
title: One line description about your change and screenshot of your work
- Push your changes to a topic branch in your fork of the repository.
- Submit a pull request to the original repository.

# Demo of this project
- Video demo of this project
<br><br>
- https://drive.google.com/file/d/1Q6bZe_ZY6G3PkCOp_gKKbGy2NTAteUOs/view?usp=sharing
<br><br>'
- ![image](https://user-images.githubusercontent.com/87666139/193408949-feea7372-5467-40a9-84fc-a4090183ea12.png)
21 changes: 21 additions & 0 deletions Downloads/Amazon-Clone/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"files": {
"main.css": "/static/css/main.95a873d4.css",
"main.js": "/static/js/main.c709e5ac.js",
"static/js/787.ebd7646a.chunk.js": "/static/js/787.ebd7646a.chunk.js",
"static/media/fontawesome-webfont.svg?v=4.7.0": "/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg",
"static/media/fontawesome-webfont.eot": "/static/media/fontawesome-webfont.8b43027f47b20503057d.eot",
"static/media/fontawesome-webfont.ttf?v=4.7.0": "/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf",
"static/media/fontawesome-webfont.woff?v=4.7.0": "/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff",
"static/media/fontawesome-webfont.woff2?v=4.7.0": "/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2",
"index.html": "/index.html",
"static/media/getFetch.cjs": "/static/media/getFetch.c780682470504fffbd04.cjs",
"main.95a873d4.css.map": "/static/css/main.95a873d4.css.map",
"main.c709e5ac.js.map": "/static/js/main.c709e5ac.js.map",
"787.ebd7646a.chunk.js.map": "/static/js/787.ebd7646a.chunk.js.map"
},
"entrypoints": [
"static/css/main.95a873d4.css",
"static/js/main.c709e5ac.js"
]
}
Binary file added Downloads/Amazon-Clone/build/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions Downloads/Amazon-Clone/build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>React App</title><script defer="defer" src="/static/js/main.c709e5ac.js"></script><link href="/static/css/main.95a873d4.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Binary file added Downloads/Amazon-Clone/build/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Downloads/Amazon-Clone/build/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions Downloads/Amazon-Clone/build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions Downloads/Amazon-Clone/build/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
6 changes: 6 additions & 0 deletions Downloads/Amazon-Clone/build/static/css/main.95a873d4.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Downloads/Amazon-Clone/build/static/js/787.ebd7646a.chunk.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Downloads/Amazon-Clone/build/static/js/main.c709e5ac.js

Large diffs are not rendered by default.

Loading

0 comments on commit 728838b

Please sign in to comment.