Skip to content

Commit

Permalink
Merge branch 'main' into Kanika637#55-cutomer-service
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanika637 authored Oct 3, 2022
2 parents bdb829d + f5aaa62 commit 8eb9919
Show file tree
Hide file tree
Showing 20 changed files with 821 additions and 210 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SKIP_PREFLIGHT_CHECK=true
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node:16.17.0-alpine
WORKDIR '/app'

COPY package.json .
RUN npm install
COPY . .

CMD ["npm","start"]



# if facing error while building image, paste there two command in terminal.

# export DOCKER_BUILDKIT=0
#export COMPOSE_DOCKER_CLI_BUILD=0
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Finally, we can't wait to see your outstanding issues and pull requests. Welcome

# Ground Rules

Here at amazon clone, we welcome everyone to contriubute to our project. You can contribute in several ways not just in code (E.g. Technical writing).
Here at amazon clone, we welcome everyone to contribute to our project. You can contribute in several ways not just in code (E.g. Technical writing).

Having numerous means of contributing means working with alot of individuals which is very good for the growth 📈 of the project but most times can lead to conflicting interests and point of views 👈👉. Below are set of rules 📖 that guide individuals participating in this project.

- Openess 👐. Collaboration is only possible if everyone is open to share ideas.
- Openness 👐. Collaboration is only possible if everyone is open to share ideas.
- Respect 👨🏾‍🤝‍👨🏽. Having respect for everyone, their skills and opinions is paramount.
- Welcoming tone 😇💃: It is expected that you interact with others in an optimistic and cheerful manner.

Expand All @@ -23,13 +23,13 @@ Having numerous means of contributing means working with alot of individuals whi

Is this your first time contributing to an open source project? If yes, Welcome!!✨🎉💃🏾 Here is a [great tutorial](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github) on how to contribute to an open source project.

At the point you are ready to take on the world of open source contribution!!.
At this point you are ready to take on the world of open source contribution!!.

You must have seen a bug or problem you can fix, this is when you open a new issue for that problem. Let's do it together.

## Steps to open a new issue

- **Step 1:** Navigate to the issues naviagtion button. See below 👇
- **Step 1:** Navigate to the issues navigation button. See below 👇

![issues1](https://user-images.githubusercontent.com/63567230/186288743-ea5b1764-b26c-49f5-a740-766b81680ee7.JPG)

Expand All @@ -41,15 +41,14 @@ You must have seen a bug or problem you can fix, this is when you open a new iss

![issues3](https://user-images.githubusercontent.com/63567230/186288798-28a7e5b1-2f3e-4fa1-9ebb-27fe2220290f.JPG)

- **Step 4:** Time to add your amazing issue. You add the title and a brief description of the issue. For further explanation, images can be added as well. See below 👇
- **Step 4:** Time to add your amazing issue. You have to add the title and a brief description of the issue. For further explanation, images can be added as well. See below 👇

![issues4](https://user-images.githubusercontent.com/63567230/186288817-9c257618-005b-4ced-993b-318f51121137.JPG)

- **Step 5:** Submit the issue. See below 👇

![issues5](https://user-images.githubusercontent.com/63567230/186289012-575123a1-68a7-4fcd-a71a-9051a8ca11ff.JPG)


Hurray, you just made added your first issue. The managers of amazon clone will now review your issue and you will either get assigned to the issue, have it closed or a comment will be dropped for you.

You have been assigned an issue 🥂 and are confused 😵 about where to go from here, follow this guide below to make your changes and pull request 🍾.
Expand Down Expand Up @@ -125,7 +124,7 @@ Hurray!!, we are done with the hard part. Head to github to make the pull reques

The maintainer of amazon-clone looks at Pull Requests on a regular basis and carries out merging or comments on the requests. You can close a pull request if it isn't showing any activity after two weeks.

## Commit messages
## Commit messages

Amazon-clone has certain conventions that should be adopted when contributing.

Expand All @@ -137,3 +136,14 @@ Amazon-clone has certain conventions that should be adopted when contributing.
- Commit changes to `package.json`, `.gitignore` and other meta files with `chore(filenamewithoutext): ...`
- Commit changes to README files or comments with `docs: ...`
- Cody style changes with `style: standard`
## Thanks to all Contributors

<a href="https://github.com/Kanika637/amazon-clone/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Kanika637/amazon-clone" />
</a>




## Don't forgot to give a ⭐ to the repo, if you learned something!

20 changes: 20 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: "3"
services:
react-app:
restart: always
build:
context: ./
dockerfile: Dockerfile
image: amazon-clone
stdin_open: true
ports:
- "3000:3000"
networks:
- app
volumes:
- ./src:/app/src
- ./app/node_modules

networks:
app:
driver: bridge
Loading

0 comments on commit 8eb9919

Please sign in to comment.