Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.63 KB

contributing.md

File metadata and controls

63 lines (50 loc) · 1.63 KB

For Contributing

What you can Contribute ?

1. Adding New Features : You can request a feature by raising an issue and submit valuable solutions by creating a pull request.

  • You can contribute by adding new features to the project.

2. Bugs or Error

  • Bug fixing and reporting bugs that you find in the code.

3. Register an Issue for any Feature Requests / Ideas

  • The issue will be reviewed. If it is approved, then it will be assigned. Before making a pull request, please register your idea as an issue so we can discuss it first. This will help us avoid unnecessary work and make the repository maintainable.

Contributing Guidlines

  1. Fork this repository.

  2. Clone this repository.

  [email protected]:<USERNAME>/paymentapp.git
  1. Navigate to the project directory.
  cd Paymentapp
  1. Setup .env file by following this steps

    1. Copy .env.sample file by running this command in your terminal
        cp .env.sample .env
    1. Add your Mongo Atlas database url in .env file
        PORT = 3000
        MONGODB_URL = 
    
        <!-- Add here the secret  -->
        SECRET = 
  2. Create new branch

  git checkout -b <your_branch_name>
  1. Make changes.
  2. Stage your changes and commit
git add -A
git commit -m "<your_commit_message>"
  1. Push your local commits to the remote repo.
git push -u origin <your_branch_name>
  1. Create a Pull Request.
  2. Congratulations! 🎉 you've made your contribution.

Your Pull request will be reviewed as soon as possible !

If liked the project Dont forget to give it a star. 😁

Happy Coding!!