Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 4d4fffb

Browse files
authored
Merge pull request #53 from EddieJaoudeCommunity/develop
Deploy
2 parents d82446c + 80fd430 commit 4d4fffb

File tree

4 files changed

+128
-18
lines changed

4 files changed

+128
-18
lines changed

CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# CONTRIBUTING GUIDELINES
2+
:tada: Welcome to Eddie Jaoude community, thank you for your interest in contributing to our projects! :balloon: To get started, please read the [Code of Conduct](https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io/blob/develop/CODE_OF_CONDUCT.md)
3+
4+
# EDDIE JAOUDE COMMUNITY PROJECTS
5+
Our projects are open to all contributors. To get started with contributing to our projects, you can check out our projects [here](https://github.com/EddieJaoudeCommunity), and choose a project you wish to make contributions to.
6+
7+
# HOW DO I CONTRIBUTE TO A PROJECT?
8+
- If this is your first contribution, see [NEWCOMERS.md](NEWCOMERS.md). You might also want to take up issues with the [good first issue](https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) or the [help wanted](https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io/labels/help%20wanted) label.
9+
10+
- Discuss the changes you wish to make by creating an [issue](https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io/issues/new), comment on an already created issue, or contact us via our [discord channel](https://discord.com/invite/jZQs6Wu).
11+
- Once you have been assigned the issue by the maintainer, you can go ahead to fork the repo, clone and make changes to fix the issue. For steps on how to do this, [this here](NEWCOMERS.md) is a helpful guide.
12+
13+
# MAKING YOUR PULL REQUEST
14+
When you are done with your changes, and you have checked the new changes you made, you can create a pull request referencing the number of the issue you fixed in the description as seen here:
15+
```
16+
This PR fixes issue # "issue number"
17+
```
18+
19+
Once, you have completed this, your pull request would be reviewed by a maintainer, if it satisfies the requirements of the corresponding issue to which it was made, it would be merged.
20+
21+
Kudos to you :balloon:
22+
23+
24+
25+
26+
Feel free to reach out to us on our [discord channel](https://discord.com/invite/jZQs6Wu). <br>
27+
THANK YOU FOR CONTRIBUTING TO EDDIE JAOUDE COMMUNITY.

NEWCOMERS.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# GIT CONTRIBUTION FLOW
2+
To make changes to a repository, follow these steps:
3+
4+
## Fork The Repository
5+
- On the top right, click on the fork button. A copy of the repository would be created on your github account - this will take few seconds
6+
- Once this is done, click on the green clone drop-down by the top left and copy the url you see. You will use this later
7+
8+
## Clone your fork to your local machine
9+
This simply means getting a copy of the repository on your personal computer.
10+
On your computer terminal, cd into the directory you want to clone the repo to.
11+
```
12+
cd "directory" note: directory here, should be the name of your chosen directory
13+
```
14+
now, enter this,
15+
```
16+
git clone "paste the url you copied here"
17+
```
18+
19+
## Create a Branch
20+
To work on a new feature or fix a bug, it's important that you create a new branch. This keeps your changes seperate from the master branch for easy management of multiple pull requests for each completed task.
21+
Enter this,
22+
```
23+
git checkout master
24+
```
25+
Create a branch with a name of your choice,
26+
```
27+
git branch "your-branch-name"
28+
```
29+
30+
## Switch to your new branch
31+
```
32+
git checkout "your-branch-name"
33+
```
34+
35+
Now you can go ahead and affect the desired changes
36+
37+
## Pushing your changes
38+
Enter this to check the modified files on your terminal,
39+
```
40+
git status
41+
```
42+
To add the changes,
43+
```
44+
git add .
45+
```
46+
Commit your changes,
47+
```
48+
git commit -m "Add-a-commit-message-here"
49+
```
50+
Now, you can push your changes to the branch you created
51+
```
52+
git push origin "your-branch-name"
53+
```
54+
## Submission - A Pull Request (PR)
55+
Once you've committed and pushed all of your changes to GitHub, reload the page for your fork on GitHub, select your branch, and click the green compare and pull request button by the top right, add a description and the number for the issue your pull request and submit.
56+
57+
58+
59+
60+
CONGRATULATIONS ON YOUR SUCCESSFUL CONTRIBUTION :balloon:
61+
62+
63+
64+
If you encounter any issues, feel free to contact us on our [discord channel](https://discord.com/invite/jZQs6Wu).
65+
66+
THANK YOU FOR CONTRIBUTING TO THE EDDIE JAOUDE COMMUNITY
67+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
- Projects name(repository list)
1212

1313
## Contributing
14-
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Be sure to check the [contributing guide lines]().
14+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Be sure to check the [contributing guide lines](CONTRIBUTING.md).
1515

1616

1717
## Find us on
1818
- <img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/discord.svg" /> [Discord](https://discord.com/invite/jZQs6Wu)
1919
- <img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg" /> [Github](https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io)
2020
- <img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/youtube.svg" /> [Youtube](https://www.youtube.com/eddiejaoude)
2121

22-
![Website](https://user-images.githubusercontent.com/624760/90750677-119e9500-e2cd-11ea-874d-9dc1a74bc72d.png)
22+
![Website](https://user-images.githubusercontent.com/61991582/92185956-22aee080-ee4d-11ea-9553-8598c74edde5.png)

index.html

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@ <h2 class="text-center text-3xl font-semibold text-indigo-100 mb-8">
5151
<div
5252
class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-4"
5353
>
54-
<div
54+
<a
5555
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
56+
href="https://github.com/EddieJaoudeCommunity/EddieBot"
57+
target="_blank"
5658
>
5759
<img
5860
src="https://user-images.githubusercontent.com/624760/91444835-3797dc80-e86d-11ea-8dfa-d7993a4d382d.png"
@@ -65,10 +67,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
6567
<p class="mx-3 text-indigo-100 text-base pb-3">
6668
Discord bot for Eddie Jaoude's Discord server.
6769
</p>
68-
</div>
70+
</a>
6971

70-
<div
72+
<a
7173
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
74+
href="https://github.com/EddieJaoudeCommunity/LiveStream-GitOps-Demo"
75+
target="_blank"
7276
>
7377
<img
7478
src="https://user-images.githubusercontent.com/624760/91444606-e687e880-e86c-11ea-9001-522fc212c7c5.png"
@@ -81,10 +85,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
8185
<p class="mx-3 text-indigo-100 text-base pb-3">
8286
GitOps live stream repo for EddieBot
8387
</p>
84-
</div>
88+
</a>
8589

86-
<div
90+
<a
8791
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
92+
href="https://github.com/EddieJaoudeCommunity/EddieBotMap"
93+
target="_blank"
8894
>
8995
<img
9096
src="https://user-images.githubusercontent.com/624760/91445888-9f9af280-e86e-11ea-8180-9198953bc33d.png"
@@ -97,10 +103,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
97103
<p class="mx-3 text-indigo-100 text-base pb-3">
98104
Live steaming background with a map and maybe more ...
99105
</p>
100-
</div>
106+
</a>
101107

102-
<div
108+
<a
103109
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
110+
href="https://github.com/EddieJaoudeCommunity/EddieJaoudeCommunity.github.io"
111+
target="_blank"
104112
>
105113
<img
106114
src="https://user-images.githubusercontent.com/624760/91445058-83e31c80-e86d-11ea-8243-3ca11b384d40.png"
@@ -113,10 +121,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
113121
<p class="mx-3 text-indigo-100 text-base pb-3">
114122
Information about our community
115123
</p>
116-
</div>
124+
</a>
117125

118-
<div
126+
<a
119127
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
128+
href="https://github.com/EddieJaoudeCommunity/support"
129+
target="_blank"
120130
>
121131
<img
122132
src="https://user-images.githubusercontent.com/624760/91445509-1d123300-e86e-11ea-9648-c5c715355f26.png"
@@ -129,10 +139,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
129139
<p class="mx-3 text-indigo-100 text-base pb-3">
130140
Community Help & Support and AEA (Ask Everyone Anything)
131141
</p>
132-
</div>
142+
</a>
133143

134-
<div
144+
<a
135145
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
146+
href="https://github.com/EddieJaoudeCommunity/EddieBotUI"
147+
target="_blank"
136148
>
137149
<img
138150
src="https://user-images.githubusercontent.com/624760/91444606-e687e880-e86c-11ea-9001-522fc212c7c5.png"
@@ -146,10 +158,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
146158
EddieBotUI is the front end application that shows Eddie Jaoude
147159
Discord Community's public stats.
148160
</p>
149-
</div>
161+
</a>
150162

151-
<div
163+
<a
152164
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
165+
href="https://github.com/EddieJaoudeCommunity/awesome-github-profiles"
166+
target="_blank"
153167
>
154168
<img
155169
src="https://user-images.githubusercontent.com/624760/91445261-cefd2f80-e86d-11ea-8421-4553b29d2e4a.png"
@@ -163,10 +177,12 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
163177
List of GitHub profiles that have awesome customization, that you
164178
can use for inspiration
165179
</p>
166-
</div>
180+
</a>
167181

168-
<div
182+
<a
169183
class="bg-blue-700 rounded max-w-sm overflow-hidden shadow-lg transition duration-300 ease-in-out transform hover:-translate-y-1 hover:scale-105"
184+
href="https://github.com/EddieJaoudeCommunity/hacktoberfest-practice"
185+
target="_blank"
170186
>
171187
<img
172188
src="https://user-images.githubusercontent.com/624760/91445718-61053800-e86e-11ea-81c7-751328c63e85.png"
@@ -179,7 +195,7 @@ <h3 class="mt-3 ml-3 font-bold text-indigo-100 text-xl mb-2">
179195
<p class="mx-3 text-indigo-100 text-base pb-3">
180196
Repo for you to raise a Pull Request for practice
181197
</p>
182-
</div>
198+
</a>
183199
</div>
184200
</div>
185201

0 commit comments

Comments
 (0)