Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Commit 3ce4342

Browse files
authored
Merge branch 'develop' into develop
2 parents 5f04645 + f8b9364 commit 3ce4342

File tree

4 files changed

+76
-20
lines changed

4 files changed

+76
-20
lines changed

.github/CONTRIBUTING.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Coderplex web application comprises of two repositories :
2828

2929

3030
## Code of Conduct
31-
Coderplex has adopted [Contributor Covenant](https://github.com/coderplex/coderplex/blob/docs-update/CODE_OF_CONDUCT.md) that we expect project participants to adhere to.
31+
Coderplex has adopted [Contributor Covenant](https://github.com/coderplex/coderplex/blob/develop/.github/CODE_OF_CONDUCT.md) that we expect project participants to adhere to.
3232

3333
## Open Development
3434
All work related to the application takes place on Github itself. We use [Issues](https://github.com/coderplex/coderplex/issues) to track bugs, discuss ideas and to engage open source contributors. [Projects](https://github.com/coderplex/coderplex/projects) are used to keep track of everything and is our project management tool. We maintain [Wiki](https://github.com/coderplex/coderplex/wiki) for structuring our long term thoughts. Both core team members and contributors sends a pull request which goes through the same review process. Whole process is as transparent as it can be and we strive to keep it that way.
@@ -83,42 +83,42 @@ We welcome pull requests from beginners and seasoned javaScript developers alike
8383
8484
#### Running Locally
8585
86-
1. Clone repository
86+
1. Fork the [repository](https://github.com/coderplex/coderplex).
87+
1. Then clone your forked repository
8788
```bash
88-
$ git clone https://github.com/coderplex/coderplex.git
89+
$ git clone <your forked repository url>
8990
```
90-
2. Move to the repository root folder
91+
1. Move to the repository root folder
9192
```bash
9293
$ cd coderplex
9394
```
94-
3. Install dependencies
95+
1. Install dependencies
9596
```bash
9697
$ yarn
9798
```
98-
4. Start the development server
99+
1. Start the development server
99100
```bash
100101
$ yarn dev
101102
```
102103
App now opens at `localhost:3000` in your default browser.
103104
> You may get this [error]() if any other app is already running the above port.
104105
105106
#### Before submitting:
106-
1. Fork the [repository](https://github.com/coderplex/coderplex).
107-
2. From your fork, create a [branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) and name it. eg. `typo-in-readme`
108-
3. If you’ve fixed a bug or added code that should be tested, add tests!
109-
4. Ensure that all test pass
107+
1. From your fork, create a [branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) and name it. eg. `typo-in-readme`
108+
1. If you’ve fixed a bug or added code that should be tested, add tests!
109+
1. Ensure that all test pass
110110
```bash
111111
$ yarn test
112112
```
113-
5. Run code formatters
113+
1. Run code formatters
114114
```bash
115115
$ yarn lint
116116
```
117-
6. Add and commit your code. Please give meaning full commit messages.
118-
7. Pull latest code from [upstream repository's ](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/)`develop`, if in case anything new were merged while you were working on your fork.
119-
8. Push the code to your fork.
120-
9. Raise the pull request from your created branch to `develop` branch of coderplex. [why develop instead of master branch?]()
121-
10. Take some time to give a brief description of the work you have done.
117+
1. Add and commit your code. Please give meaning full commit messages.
118+
1. Pull latest code from [upstream repository's ](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/)`develop`, if in case anything new were merged while you were working on your fork.
119+
1. Push the code to your fork.
120+
1. Raise the pull request from your created branch to `develop` branch of coderplex. [why develop instead of master branch?]()
121+
1. Take some time to give a brief description of the work you have done.
122122

123123
#### After submitting
124124
1. Wait for all checks to pass in below section.

.github/ISSUE_TEMPLATE.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,33 @@
1-
added
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
<!--
4+
Thank you very much for contributing to coderplex by creating an issue! ❤️
5+
To avoid duplicate issues we ask you to check off the following list
6+
-->
7+
8+
<!-- Checked checkbox should look like this: [x] -->
9+
- [ ] I have searched the [issues](https://github.com/coderplex/coderplex/issues) of this repository and believe that this is not a duplicate.
10+
11+
## Expected Behavior
12+
<!--- If you're describing a bug, tell us what should happen -->
13+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
14+
15+
## Current Behavior
16+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
17+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
18+
19+
## Steps to Reproduce (for bugs)
20+
<!--- Provide unambiguous set of steps to -->
21+
<!--- reproduce this bug. Include screenshot, if relevant -->
22+
1.
23+
2.
24+
3.
25+
4.
26+
27+
## Your Environment
28+
<!--- Include as many relevant details about the environment you experienced the bug in -->
29+
| Tech | Version |
30+
|---------|---------|
31+
| OS | |
32+
| browser | |
33+
| etc | |

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
will work
1+
<!--- Provide a general summary of the PR in the Title above -->
2+
3+
<!--
4+
Thank you very much for contributing to coderplex by creating an PR! ❤️
5+
To quickly merge this PR we ask you to check off the following list
6+
-->
7+
8+
<!--place the issue number which this PR is solving. Eg: Fixes #27-->
9+
Fixes
10+
11+
## Changes proposed in this PR
12+
- <!-- change 1-->
13+
- <!--change 2-->
14+
15+
<!-- Checked checkbox should look like this: [x] -->
16+
### Checklist for this PR
17+
18+
- [ ] I have read [contributing guidelines](https://github.com/coderplex/coderplex/blob/develop/.github/CONTRIBUTING.md).
19+
- [ ] I executed `yarn lint` locally to format my code.
20+
- [ ] All tests `yarn test` ran successfully.
21+
- [ ] Pull request is towards `develop` branch.
22+
<!--If change is related to UI then tick below checkbox otherwise delete below line-->
23+
- [ ] I have tested responsiveness of the UI by checking on max devices using [ScreenFly](http://quirktools.com/screenfly/)

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# Coderplex Website [Work In Progress]
1+
# Coderplex Website
22

33
[![Greenkeeper badge](https://badges.greenkeeper.io/coderplex/coderplex.svg)](https://greenkeeper.io/)
44
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
55
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
66
[![Build Status](https://travis-ci.org/coderplex/coderplex.svg?branch=master)](https://travis-ci.org/coderplex/coderplex)
77
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/coderplex/coderplex/blob/master/LICENSE)
88

9+
##### Join our community here at https://www.coderplex.org
10+
>:construction: under active development
11+
912
## About
1013

1114
This project mainly uses
@@ -15,7 +18,6 @@ This project mainly uses
1518
* [Next.js](https://github.com/zeit/next.js/) - A minimalistic framework for server-rendered React applications.
1619
* [emotion](https://emotion.sh) - A high performance, lightweight css-in-js library.
1720

18-
### [Join our community here](https://www.coderplex.org)
1921

2022
## Contributing
2123

0 commit comments

Comments
 (0)