Skip to content

Commit f5a623f

Browse files
Initial Commit
1 parent 2eec41f commit f5a623f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+9385
-0
lines changed

CODE_OF_CONDUCT.md

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
education, socio-economic status, nationality, personal appearance, race,
10+
religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at {{ email }}. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
69+

CONTRIBUTING.md

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
## Contributing
2+
3+
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
4+
5+
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/SauravMukherjee44/CodeIN-Community-Website/blob/main/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
6+
7+
## Issues and PRs
8+
9+
If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them.
10+
11+
We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, though! Look at the links below if you're not sure how to open a PR.
12+
13+
## How to Contribute
14+
15+
- Take a look at the Existing [Issues](https://github.com/SauravMukherjee44/CodeIN-Community-Website/issues) or create your own Issues!
16+
- Fork the Repo and create a Branch for any Issue that you are working upon.
17+
- Create a Pull Request which will be promptly reviewed and suggestions would be added to improve it.
18+
- Add Screenshots to help us know what this is all about.
19+
20+
## How to make a Pull Request
21+
22+
**1.** Fork the repository by clicking on the <a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website"><img src="https://img.icons8.com/ios/24/000000/code-fork.png"></a> symbol at the top right corner.
23+
24+
**2.** Clone the forked repository.
25+
```
26+
git clone https://github.com/SauravMukherjee44/CodeIN-Community-Website.git
27+
```
28+
29+
**3.** Navigate to the project directory.
30+
```
31+
cd CodeIN-Community-Website
32+
```
33+
34+
**4.** Create a new branch:
35+
```
36+
git checkout -b YourBranchName
37+
```
38+
39+
**5.** Make changes in source code.
40+
41+
**6.** Stage your changes and commit
42+
43+
```
44+
git add .
45+
git commit -m "<your_commit_message>"
46+
```
47+
48+
**7.** Push your local commits to the remote repo.
49+
50+
```
51+
git push origin YourBranchName
52+
```
53+
54+
**8.** Create a [PR](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
55+
56+
**9.** If anyone contribute to this repository, then the changes will not reflect in your local repository. For that:
57+
58+
**10.** Setup a reference(remote) to the original repository to get all the changes from the remote.
59+
```
60+
git remote add upstream https://github.com/SauravMukherjee44/CodeIN-Community-Website.git
61+
```
62+
63+
**11.** Check the remotes for this repository.
64+
```
65+
git remote -v
66+
```
67+
68+
**12.** Fetching from the remote repository will bring in its branches and their respective commits.
69+
```
70+
git fetch upstream
71+
```
72+
73+
**13.** Make sure that you're on your master branch.
74+
```
75+
git checkout master
76+
```
77+
78+
**14.** Now that we have fetched the upstream repository, we want to merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing our local changes.
79+
```
80+
git merge upstream/master
81+
```
82+
83+
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
84+
85+
- Follow the [style guide](https://gist.github.com/lisawolderiksen/a7b99d94c92c6671181611be1641c733). Any linting errors should be shown when running `npm test`.
86+
- Write and update tests.
87+
- Keep your changes as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
88+
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
89+
90+
Work in Progress pull requests are also welcome to get feedback early on, or if there is something blocked you.
91+
92+
## Resources
93+
94+
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
95+
- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
96+
- [GitHub Help](https://help.github.com)

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Saurav Mukherjee
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

README.md

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
<h1 align="center">CodeIN Community Website </h1>
2+
3+
<h3> Open Source Website for CodeIN Community built using HTML, CSS and JavaScript </h3>
4+
<h3>[ In development Phase ]</h3>
5+
6+
7+
<h2>
8+
<a href="https://discord.com/invite/sqFRzrj7f3" target="_blank">Join Us On Discord ⚡</a>
9+
</h2>
10+
11+
So, here you go! Contribute to the Open Source Website of CodeIN Community 🤩 Excited?
12+
<div align="left">
13+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website"><img src="https://sloc.xyz/github/SauravMukherjee44/CodeIN-Community-Website" alt="LOC"/></a>
14+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website"><img src="https://img.shields.io/github/stars/SauravMukherjee44/CodeIN-Community-Website" alt="Stars Badge"/></a>
15+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website/network/members"><img src="https://img.shields.io/github/forks/SauravMukherjee44/CodeIN-Community-Website" alt="Forks Badge"/></a>
16+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website/graphs/contributors"><img alt="GitHub contributors" src="https://img.shields.io/github/contributors/SauravMukherjee44/CodeIN-Community-Website?color=2b9348"></a>
17+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website"><img src="https://badges.frapsoft.com/os/v2/open-source.svg" alt="Open Source"/></a>
18+
</div>
19+
20+
21+
# Contribution is fun! 🧡
22+
23+
## 📌 Tech Stack
24+
[![HTML](https://img.shields.io/badge/html5%20-%23E34F26.svg?&style=for-the-badge&logo=html5&logoColor=white)]
25+
[![CSS](https://img.shields.io/badge/css3%20-%231572B6.svg?&style=for-the-badge&logo=css3&logoColor=white)]
26+
[![JS](https://img.shields.io/badge/javascript%20-%23323330.svg?&style=for-the-badge&logo=javascript&logoColor=%23F7DF1E)]
27+
28+
## 📌 Sneak Peek of Main Page
29+
![image](https://github.com/SauravMukherjee44/CodeIN-Community-Website/blob/2c2416fbb822f24e0e2fbb47aca2099aa0127f95/media/Images/Screenshot%20(327).png)
30+
31+
In order to make a hassle-free environment, I implore you all (_while contributing_) to follow the instructions mentioned below!
32+
33+
Happy Submissions :slightly_smiling_face:
34+
35+
<h1 align=center> OUR VALUABLE CONTRIBUTORS✨ </h1>
36+
<p align="center">
37+
38+
39+
<a href="https://github.com/SauravMukherjee44/CodeIN-Community-Website/graphs/contributors">
40+
<img src="https://contrib.rocks/image?repo=SauravMukherjee44/CodeIN-Community-Website" />
41+
</a>
42+
43+
<h1 align=center>Happy Coding 👨‍💻 </h1>
44+
45+
46+
<h2>📬 Contact</h2>
47+
48+
If you want to contact me, you can reach me through below handles.
49+
<div align="center">
50+
51+
<a href="https://www.youtube.com/channel/UCYGVtIgQIAChKBWBmChxzJw" target="_blank"><img alt="YouTube" src="https://img.shields.io/badge/Youtube-%23FF0000.svg?style=for-the-badge&logo=YouTube&logoColor=white" /></a>
52+
<a href="https://www.linkedin.com/in/sauravmukherjee44/" target="_blank"><img alt="LinkedIn" src="https://img.shields.io/badge/linkedin%20-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white" /></a>
53+
<a href="https://twitter.com/mesourav44" target="_blank"><img src="https://img.shields.io/badge/twitter-%2300acee.svg?&style=for-the-badge&logo=twitter&logoColor=white&alt=twitter" /></a>
54+
<a href="mailto:[email protected]"><img alt="Gmail" src="https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white" />
55+
<a href="https://t.me/Saurav_44"><img alt=" Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
56+
<a href="https://discord.com/users/758681549993541684"><img alt=" Discord" src="https://img.shields.io/badge/Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white">
57+
<a href="https://www.instagram.com/mesouravofficial/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white">
58+
</a>
59+
60+
</div>
61+
62+
<div align="center">
63+
64+
<h1 align="center">CodeIN Community</h1>
65+
<img width="10%" align="center" src="https://github.com/SauravMukherjee44/SauravMukherjee44/blob/01033044396cd45db3731e6ac37284dc5386e2cd/CodeIN%20Logo.png" >
66+
67+
I have started a Community named CodeIN Community [Community of Coding Enthusiasts] Where we share Resources, Roadmaps to learn different technologies and share opportunities related to different tech programs. Also, We organize Events on different technologies to help people to get started with these technologies.
68+
69+
<span> <h2>Join the Community on Discord ⚡</h2>
70+
<a href="https://discord.gg/hWwbgP4dz9"><img alt=" Discord" src="https://img.shields.io/badge/Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white"></a>
71+
<a href="https://t.me/CodeINCommunity"><img alt=" Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
72+
<a href="https://www.linkedin.com/company/codein-community/" target="_blank"><img alt="LinkedIn" src="https://img.shields.io/badge/linkedin%20-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white" /></a></span>
73+
74+
</div>
75+
76+
## Contribution Guidelines 🏗
77+
78+
Are we missing any of your favorite features, which you think you can add to it❓ We invite you to contribute to this project and make it better.
79+
To start contributing, follow the below guidelines:
80+
81+
**1.** Fork [this](https://github.com/SauravMukherjee44/CodeIN-Community-Website) repository.
82+
83+
**2.** Clone your forked copy of the project.
84+
85+
```bash
86+
git clone https://github.com/your_username/CodeIN-Community-Website.git
87+
```
88+
89+
**3.** Navigate to the project directory.
90+
```
91+
cd CodeIN-Community-Website
92+
```
93+
94+
**4.** Create a new branch:
95+
```
96+
git checkout -b YourBranchName
97+
```
98+
99+
**5.** Make changes in source code.
100+
101+
**6.** Stage your changes and commit
102+
103+
```
104+
git add .
105+
git commit -m "<your_commit_message>"
106+
```
107+
108+
**7.** Push your local commits to the remote repo.
109+
110+
```
111+
git push origin YourBranchName
112+
```
113+
114+
**8.** Create a [PR](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
115+
116+
**9.** If anyone contribute to this repository, then the changes will not reflect in your local repository. For that:
117+
118+
**10.** Setup a reference(remote) to the original repository to get all the changes from the remote.
119+
```
120+
git remote add upstream https://github.com/SauravMukherjee44/CodeIN-Community-Website.git
121+
```
122+
123+
**11.** Check the remotes for this repository.
124+
```
125+
git remote -v
126+
```
127+
128+
**12.** Fetching from the remote repository will bring in its branches and their respective commits.
129+
```
130+
git fetch upstream
131+
```
132+
133+
**13.** Make sure that you're on your master branch.
134+
```
135+
git checkout master
136+
```
137+
138+
**14.** Now that we have fetched the upstream repository, we want to merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing our local changes.
139+
```
140+
git merge upstream/master
141+
```
142+
143+
© 2021 Saurav Mukherjee and contributors\
144+
This project is licensed under the [**MIT license**](https://github.com/SauravMukherjee44/Aec-Library-Website/blob/main/LICENSE).
145+
146+
[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)

0 commit comments

Comments
 (0)