Replies: 1 comment
-
|
Hey, welcome to open source! Since you already know how to build web servers with Gin, you are in a good position to contribute. Here are some tips: Start with CONTRIBUTING.md The repo has a CONTRIBUTING.md file that explains the basics - read that first. Key points:
Setting up locally git clone https://github.com/gin-gonic/gin.git
cd gin
make test # run tests
make fmt # format code
make vet # check for suspicious code
make lint # style checksThe Makefile has all the commands you need. Run Codebase structure The main files you should understand:
Finding issues to work on Look for issues with
With your background Since you know databases and concurrency, you could look into:
Tips
Good luck! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone 👋
I’ve been learning Go and would like to start contributing to open-source.
Here’s what I’m currently comfortable with:
I’d really like to apply these skills to this project, but I’m not sure where to start.
Could you please suggest:
beginner-friendly areas or components in this repository to look at, and any open issues that might be a good first contribution?
Also, if there are any contribution guidelines or setup tips that I should follow, I’d appreciate pointers.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions