Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 1.61 KB

CONTRIBUTING.md

File metadata and controls

57 lines (47 loc) · 1.61 KB

Contributing to Numerology Pro App

Thank you for considering contributing to the Numerology Pro App! 🎉
We welcome contributions that improve the app, fix bugs, or add new features.


📌 How to Contribute

1️⃣ Fork the Repository

Click the Fork button at the top-right corner of the repository to create your own copy.

2️⃣ Clone the Repository

git clone https://github.com/your-username/numerology-app.git
cd numerology-app

##3️⃣ Create a New Branch

git checkout -b feature-new-update

Replace feature-new-update with a meaningful branch name.

##4️⃣ Install Dependencies Ensure you have all dependencies installed:

pip install -r requirements.txt

##5️⃣ Make Changes & Test Modify the code, and run tests to ensure everything works fine.

python -m unittest discover tests

##6️⃣ Commit Changes Write a clear commit message:

git add .
git commit -m "Added a new feature: XYZ"
git push origin feature-new-update

##7️⃣ Create a Pull Request (PR) Go to the Pull Requests tab in your repository and click New Pull Request.

Give a clear description of what you changed. Link any related issues if applicable. ##✅ Contribution Guidelines Follow PEP8 for Python code formatting. Write meaningful commit messages (e.g., "Fixed bug in numerology calculations"). Include unit tests if adding a new function or feature. Keep PRs focused—avoid making multiple changes in one PR. 🚀 Issues & Discussions Check out Issues to find something to work on. Feel free to open a new issue if you find a bug or have a suggestion. Happy coding! 🎯✨