Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghat0tkach/firstpr
FIRSTPR - Ready to Step footsteps in the world of open source?! is a beginner-friendly open-source project that aims to introduce newcomers to the world of open source development
https://github.com/ghat0tkach/firstpr
blogging gatsby gatsbyjs hacktoberfest hacktoberfest-accepted hacktoberfest2023 readme-profile
Last synced: 3 months ago
JSON representation
FIRSTPR - Ready to Step footsteps in the world of open source?! is a beginner-friendly open-source project that aims to introduce newcomers to the world of open source development
- Host: GitHub
- URL: https://github.com/ghat0tkach/firstpr
- Owner: Ghat0tkach
- Created: 2023-10-01T11:42:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-11T23:42:58.000Z (3 months ago)
- Last Synced: 2024-10-17T15:46:03.400Z (3 months ago)
- Topics: blogging, gatsby, gatsbyjs, hacktoberfest, hacktoberfest-accepted, hacktoberfest2023, readme-profile
- Language: JavaScript
- Homepage: https://first-pr.vercel.app
- Size: 1.17 MB
- Stars: 0
- Watchers: 1
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FIRST PR - Newcomer Friendly Open Source Project## Welcome to FIRST PR!
FIRST PR is a beginner-friendly open-source project that aims to introduce newcomers to the world of open source development. You can contribute to this project by adding your own README.md file, which will be displayed on our website.
# How to Contribute
## Prerequisites
Make sure you have the following prerequisites installed on your operating system before you start contributing:
- [Nodejs and npm](https://nodejs.org/en/)
To verify run:
```
node -v
``````
npm -v
```1. **Fork this Repository.**
Click the "Fork" button at the top right of this repository to create your copy.
2. **Clone your Fork.**
```shell
git clone https://github.com/your-username/FIRST-PR.git
cd FIRSTPR3. **Create a New Branch.**
Create a new branch to work on your contribution.
```shell
git checkout -b my-contribution
```Install the dependencies for running the site.
```
npm install
```Now run the site at your local server
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
4. **Add your README.md./ Blog**
Inside the content directory, create a new .md file with your GitHub username (e.g., your-username.md)
5. **Commit and Push.**
git add .
git commit -m "Add my README.md"
git push origin my-contribution
Commit your changes and push them to your forked repository.
6. **Create a Pull Request.**
Go to your forked repository on GitHub, and you should see a "New Pull Request" button. Click on it and submit your pull request.
Wait for Approval.
7 **Our maintainers will review your pull request. Once it's approved and merged, your README.md will be displayed on our website.**