PT-BR 🇧🇷
Agradeço pelo seu interesse em contribuir para o meu Blog. Sua ajuda é valiosa para melhorar e expandir minha aplicação. Abaixo estão as diretrizes e os passos para contribuir com meu projeto.
Antes de começar, você deverá forkar o repositório do projeto para seu perfil.
Após o Fork, você precisará clonar o repositório forkado para seu ambiente de desenvolvimento local:
git clone https://github.com/{seu-usuario}/navarro_blog_front.git
cd navarro_blog_front
Antes de iniciar qualquer trabalho, crie uma branch separada para a sua contribuição. Use um nome descritivo para a sua branch:
git checkout -b feature/nova-funcionalidade
Faça as alterações necessárias no código, adicione novos recursos ou correções de bugs.
Garanta que suas alterações não quebraram nenhum recurso existente. Execute os testes e certifique-se de que todos passam:
bun tests
Mantenha a documentação atualizada. Se você adicionou novos recursos, verifique se eles estão devidamente documentados no Swagger.
Após concluir suas alterações e testá-las, faça um commit das alterações:
git add .
git commit -m <tipo de alteração>: Nova funcionalidade
Em seguida, envie suas alterações para o repositório:
git push --set-upstream origin feature/nova-funcionalidade
Vá para o repositório no GitHub e crie um Pull Request para que sua contribuição seja revisada. Certifique-se de descrever suas alterações e fornecer informações contextuais.
Após criar um Pull Request, nossa equipe revisará suas alterações e fornecerá feedback. Uma vez aprovado, suas alterações serão mescladas no projeto principal.
- Mantenha o código limpo e legível.
- Siga as boas práticas de desenvolvimento.
- Respeite as convenções de nomenclatura existentes.
- Documente adequadamente as alterações, recursos ou correções.
Agradeço pela sua contribuição e espero que possamos trabalhar juntos para tornar o meu Blog ainda melhor. Se você tiver alguma dúvida ou precisar de ajuda, não hesite em entrar em contato comigo. Juntos, podemos criar uma aplicação mais robusta e eficiente.
ENG 🇺🇸
Thank you for your interest in contributing to my Blog. Your help is valuable to improve and expand my application. Below are the guidelines and steps to contribute to my project.
Before you begin, you must fork the project repository to your profile.
After Fork, you will need to clone the forked repository to your local development environment:
git clone https://github.com/{seu-usuario}/navarro_blog_front.git
cd navarro_blog_front
Before starting any work, create a separate branch for your contribution. Use a descriptive name for your branch:
git checkout -b feature/new-feature
Make necessary changes to the code, add new features or bug fixes.
Ensure that your changes did not break any existing features. Run the tests and make sure they all pass:
make test
Keep documentation up to date. If you've added new features, make sure they're properly documented in Swagger.
After you complete your changes and test them, commit the changes:
git add .
git commit -m <change type>: New functionality
Then commit your changes to the repository:
git push origin feature/new-feature
Go to the repository on GitHub and create a Pull Request to have your contribution reviewed. Be sure to describe your changes and provide contextual information.
After creating a Pull Request, our team will review your changes and provide feedback. Once approved, your changes will be merged into the main project.
- Keep the code clean and readable.
- Follow good development practices.
- Respect existing naming conventions.
- Properly document changes, features or fixes.
Thank you for your contribution and I hope we can work together to make my Blog even better. If you have any questions or need help, don't hesitate to contact me. Together, we can create a more robust and efficient application.