Hello World Thank you for your interest in contributing to DeveloperSSS! 🎉 This project is community-driven and grows with contributions from developers like you.
We use the "Fork & Pull Request" workflow to add resources, fix translations, or implement new features. Here are the steps:
Click the "Fork" button at the top right of the GitHub page to copy the project to your own account.
git clone https://github.com/TunarJamalov/DeveloperSSS.git
cd DeveloperSSSAlways work on a clean branch:
git checkout -b add-new-resourceFor example, if you want to add a new YouTube channel:
- Open
src/data.js. - Find the relevant category (e.g.,
cyber-security). - Add the new item to the
resourcesarray in the correct format.
Example Data Format:
{
type: 'youtube',
title: 'Channel Name',
url: 'https://youtube.com/...',
desc: 'Short description.',
lang: 'tr' // or 'en', 'global'
}git add .
git commit -m "Added a new resource to Cyber Security"
git push origin add-new-resource- Go to your forked repository on GitHub.
- Click the "Compare & pull request" button.
- Describe your changes and submit.
- Format: Be careful not to break the JSON/Object structure in
data.js. A single missing comma can crash the app. - Language: Keep descriptions short and clear.
- Ads: Only add genuinely useful, educational resources. Promotional content will not be accepted.
Thank you! 💙 The DeveloperSSS Team