Contribution Guidelines
Thank you for your interest in contributing to the FiNAN project! We welcome contributions from developers of all skill levels.
Code of Conduct
Section titled “Code of Conduct”We are committed to providing a friendly, safe, and welcoming environment for all, regardless of background or experience level. Please be respectful and considerate in your interactions.
PR Process
Section titled “PR Process”We follow a standard Fork & Pull Request workflow.
- Fork the repository on GitHub.
- Clone your fork locally:
Terminal window git clone https://github.com/YOUR-USERNAME/finan-website.gitcd finan-website - Create a branch for your feature or fix:
Terminal window git checkout -b feature/amazing-new-feature# orgit checkout -b fix/annoying-bug - Make your changes.
- Commit your changes using a descriptive message.
- Push to your fork:
Terminal window git push origin feature/amazing-new-feature - Open a Pull Request against the
mainbranch of the original repository.
Code Review
Section titled “Code Review”All submissions, including submissions by project members, require review. We use GitHub Pull Requests for this purpose. Consult GitHub Help for more information on using Pull Requests.
What we look for
Section titled “What we look for”- Correctness: Does the code do what it’s supposed to do?
- Style: Does it follow our Style Guide?
- Safety: Does it introduce any security vulnerabilities?
- Documentation: Did you update the docs if you changed functionality?