Skip to content

Commit cda4737

Browse files
committed
first commit
0 parents  commit cda4737

18 files changed

+10253
-0
lines changed

Diff for: .gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# vercel
34+
.vercel

Diff for: README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Installation Steps
2+
3+
4+
5+
## Using npm
6+
7+
Run commands
8+
9+
1) ```npm install```
10+
11+
12+
2) ```npm run dev```
13+
14+
15+
## Or using yarn
16+
17+
Run commands
18+
19+
1) ```npm install --global yarn```
20+
21+
2) ```yarn install```
22+
23+
3) ```yarn run dev```
24+
25+
26+
### If you see the window below then you are set to build AMAZON 2.0!
27+
28+
![Template Screenshot](TemplateScreenshot.jpg?raw=true "Template Screenshot")

Diff for: next.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
images: {
3+
domains: ["links.papareact.com", "fakestoreapi.com"],
4+
},
5+
};

0 commit comments

Comments
 (0)