arakoodev / FlySpring

Developer-friendly Spring Boot flavor. Supercharged cli "flyfly" to make you fall in love with Java again
MIT License
7 stars 7 forks source link

Added Documentations #55

Closed Rahs0601 closed 1 year ago

Rahs0601 commented 1 year ago

Description

This project hopes and requests for clean pull request merges. the way we merge is squash and merge. This fundamentally can only work if you NEVER ISSUE A PULL REQUEST TWICE FROM THE SAME LOCAL BRANCH. If you create another pull request from same local branch, then the merge will always fail.

solution is simple - ONE BRANCH PER PULL REQUEST. We Follow this strictly. if you have created this pull request using your master/main branch, then follow these steps to fix it:

# Note: Any changes not committed will be lost.
git branch newbranch      # Create a new branch, saving the desired commits
git checkout master       # checkout master, this is the place you want to go back
git reset --hard HEAD~3   # Move master back by 3 commits (Make sure you know how many commits you need to go back)
git checkout newbranch    # Go to the new branch that still has the desired commits. NOW CREATE A PULL REQUEST

This PR Fixes # (issue)

github-actions[bot] commented 1 year ago

CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅

Rahs0601 commented 1 year ago

I have read the Arakoo CLA Document and I hereby sign the CLA

pizzaboi21 commented 1 year ago

hi Rahul. Thank you for the pull request! I am seeing some discrepancy between the README in the docs and the actual usage of flyfly. flyfly has only three commands right now - run, format and help.

About testcontainers, flyfly sets that up automatically if it detects a docker container running.

Also, flyfly REQUIRES gradle to function.

The comments in the classes are looking fine.

I suggest you to use and apply flyfly commands and then make a PR again.