Thank you for considering contributing to Project-Wizard! We welcome contributions from engineering graduates and enthusiasts interested in adding open-source projects to our repository. Please follow these guidelines to make your contributions as smooth as possible.
Before you start contributing, make sure you have Git installed on your system and have created a GitHub account. Here are the basic steps to contribute:
- Fork the Project-Wizard repository to your GitHub account.
- Clone your forked repository to your local machine using
git clone. - Create a new branch for your contribution using
git checkout -b your-branch-name.
The repository has two main folders: Projects and Games. When adding a new project or game, follow these guidelines:
-
Folder Structure:
- For projects, create a new folder in the
Projectsdirectory. - For games, create a new folder in the
Gamesdirectory.
Example:
Projects/MyProjectorGames/MyGame - For projects, create a new folder in the
-
Content Files:
- Place all the content files for your project or game within the respective folder.
Example: If your game is called "Snake Game," place the game's content files inside
games/SnakeGame. -
Main Program File:
- Ensure that your project or game includes a main program file named
main.__(e.g.,main.pyfor Python projects).
Example:
Games/SnakeGame/main.py - Ensure that your project or game includes a main program file named
-
Additional Files:
- Include any other necessary files, such as data files or assets, within the folder.
-
Executable and Compatibility:
- Ensure that your project or game is executable on various systems. If specific versions or dependencies are required, mention them in your project's README.
-
Documentation:
- Provide clear and concise documentation within your project's folder, including instructions on how to run and use your project or game.
-
Requirements.txt:
- For Python projects, create a
requirements.txtfile if your project depends on specific Python modules or packages.
- For Python projects, create a
To contribute to Project-Wizard, follow these steps using Git or GitHub Desktop:
-
Fork the Project-Wizard repository to your GitHub account.
-
Clone your forked repository to your local machine:
git clone https://github.com/pralinkhaira/Project-Wizard.git
-
Create a new branch for your project or game:
git checkout -b feature/your-project-name
-
Add your project or game files to the appropriate folder as described above.
-
Commit your changes:
git add . git commit -m "Add your project/game: Snake Game"
-
Push your changes to your forked repository:
git push origin feature/your-project-name
-
Create a pull request from your forked repository to the main Project-Wizard repository on GitHub.
-
Once your pull request is reviewed and approved, it will be merged into the main repository.
-
Open GitHub Desktop and sign in to your GitHub account.
-
Clone the Project-Wizard repository to your local machine using GitHub Desktop.
-
Create a new branch for your project or game using GitHub Desktop.
-
Add your project or game files to the appropriate folder as described above.
-
Commit your changes using GitHub Desktop.
-
Push your changes to your forked repository using GitHub Desktop.
-
Create a pull request from your forked repository to the main Project-Wizard repository on GitHub.
-
Once your pull request is reviewed and approved, it will be merged into the main repository.
Once you have added your project or game, follow these steps to submit your contribution:
-
Commit your changes to your branch using
git commit. -
Push your changes to your forked repository on GitHub using
git push. -
Create a Pull Request (PR) from your forked repository to the main Project-Wizard repository. Ensure that you provide a clear title and description for your PR.
-
Our team will review your contribution, and if it meets our guidelines and is valuable to the community, we will merge it.
-
Congratulations! You have successfully contributed to Project-Wizard.
-
Fake or invalid contributions will not be accepted.
-
If your project includes bugs, we may ask you to update or fix them before merging.
-
We do not accept contributions that only update the README.md.
Thank you for your contribution to Project-Wizard. Your efforts help create a valuable resource for engineering graduates and enthusiasts. Happy coding!