Skip to content

Commit eb7f5b5

Browse files
authored
Update CONTRIBUTING.md by removing Contributing to Black Python Devs Projects guidelines
1 parent cd3cefd commit eb7f5b5

File tree

1 file changed

+0
-76
lines changed

1 file changed

+0
-76
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -70,82 +70,6 @@ We welcome everyone to review Pull Requests. It is a great way to learn, network
7070

7171
Join the [Discord](https://discord.gg/XUc3tFqCT3) to discuss suggested new features, possible bugs, enhancement in user experience, and any other aspects of the site. The comment section of each issue is our preferred method of communication as it retains conversations history for future contributors wanting to gain insights/updates on the topic in question, you can, however, inquire in the #community-discussion channel in the Black Python Devs Discord workspace.
7272

73-
# Contributing to Black Python Devs Projects
74-
75-
Please follow these steps and note these guidelines to begin contributing:
76-
77-
1. First step is to set up the local development environment.
78-
1. Bug fixes are always welcome. Start by reviewing the [list of bugs](https://github.com/BlackPythonDevs/blackpythondevs.github.io/issues).
79-
1. A good way to easily start contributing is to pick and work on a [good first issue](https://github.com/BlackPythonDevs/blackpythondevs.github.io/labels/good%20first%20issue). We try to make these issues as clear as possible and provide basic info on how the code should be changed, and if something is unclear feel free to ask for more information on the issue.
80-
81-
# How to Contribute
82-
83-
## Fork the repository
84-
85-
- To fork the repository so you have a copy of the codebase, you will click on the **"Fork"** button from the repository main page
86-
87-
![Fork button](/assets/images/fork_button_page.png)
88-
89-
- Clicking on the Fork button takes you to the **"Create New Fork"** page where you select the owner (your personal github account) and click on the Create fork button.
90-
91-
![Create new fork page](/assets/images/create_new_fork_page.png)
92-
93-
## Createing an issue
94-
95-
- Click on the issues tab in the repository.
96-
97-
![issues tab](/assets/images/issues_tab.png)
98-
99-
- Click on the green button with the label **"New issue"** and you should see the image below:
100-
101-
![New issue button](/assets/images/new_issue.png)
102-
103-
- Type in the issue title in the title textbox and type in a clear explanation of the issue in the textarea. You can add images, code snippets, etc to explain your issue.
104-
105-
- Once you are done, you can preview your issue by selecting the Preview tab. If you are satisfied with the issue presentation, you can click on the green "Submit new issue" button to create your issue.
106-
107-
- And that's it! If you cose to comment requesting the issue to be assigned to you, wait for a maintainer to do so. You should get an email notification of the issue being assigned to you or you can view the issue assignment in the issue page. It should look similar to this:
108-
109-
![issue assignment](/assets/images/issue_assignment.png)
110-
111-
## Working on an issue
112-
113-
- The easiest way to make changes and and test them is by using [![GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/BlackPythonDevs/blackpythondevs.github.io)
114-
115-
- You can also access the Codespaces from the repository main page:
116-
117-
![Codespaces tab](/assets/images/codespaces_tab.png)
118-
119-
- The web version of VSCode should open in a new tab in your browser:
120-
121-
![Black Python Devs Codespace](/assets/images/BlackPythonDevs_codespace.png)
122-
123-
- Now that you have the code editor set up, you need to install the dependencies. To do this, you have to open the code editor's terminal and run the command `bundle install`.
124-
125-
- The easiest way to open the terminal is to click on the 3 horizontal lines (also known as hamburger) at the top left of the code editor > Terminal > New Terminal:
126-
127-
![Terminal starter](/assets/images/terminal_starter3.png)
128-
129-
- In the terminal run the command `bundle install`.
130-
131-
![Bundle install terminal](/assets/images/bundle_install_terminal.png)
132-
133-
- After installing the dependencies, its time to run the application. We do this by running the command `bundle exec jekyll serve` or run the default **Build Task** <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd>:
134-
135-
![Jekyll serve terminal](/assets/images/jekyll_serve_terminal.png)
136-
137-
- The server address shows `http://127.0.0.1:4000`. This is the address for any local computer so this server will be wrong since the application is running on a remote computer so we have to get the address of that computer. We can get the address by clicking on the Ports tab next to the Terminal:
138-
139-
![Codespace ports](/assets/images/codespace_ports2.png)
140-
141-
- <kbd>Ctrl</kbd> + Click on the Forwarded Address assigned to Port 4000. This will open the running application in a new tab:
142-
143-
![Running page](/assets/images/running_page.png)
144-
145-
- Test your changes (create new tests as needed)
146-
147-
- Once you’ve committed and pushed all of your changes to GitHub, go to the page for your fork on GitHub, select your development branch, and click the pull request button. Please ensure that you compare your feature branch to the desired branch of the repo you are supposed to make a PR to. If you need to make any adjustments to your pull request, just push the updates to GitHub. Your pull request will automatically track the changes in your development branch and update it. 🥳
148-
14973
# Accessibility
15074

15175
Accessibility (A11y) using the **FastPass** tests for A11y and the [Accessibility Insights for Web

0 commit comments

Comments
 (0)