2016-01-13 14:02:36 +00:00
|
|
|
# Contributing to beego
|
|
|
|
|
|
|
|
beego is an open source project.
|
|
|
|
|
|
|
|
It is the work of hundreds of contributors. We appreciate your help!
|
|
|
|
|
|
|
|
Here are instructions to get you started. They are probably not perfect,
|
|
|
|
please let us know if anything feels wrong or incomplete.
|
|
|
|
|
2020-08-18 12:55:11 +00:00
|
|
|
## Prepare environment
|
|
|
|
|
|
|
|
Firstly, install some tools. Execute those commands **outside** the project. Or those command will modify go.mod file.
|
|
|
|
|
|
|
|
```shell script
|
|
|
|
go get -u golang.org/x/tools/cmd/goimports
|
|
|
|
|
|
|
|
go get -u github.com/gordonklaus/ineffassign
|
|
|
|
```
|
|
|
|
|
|
|
|
And the go into project directory, run :
|
|
|
|
```shell script
|
|
|
|
cp ./githook/pre-commit ./.git/hooks/pre-commit
|
|
|
|
```
|
|
|
|
This will add git hooks into .git/hooks. Or you can add it manually.
|
|
|
|
|
2020-08-20 14:25:37 +00:00
|
|
|
## Prepare middleware
|
|
|
|
|
|
|
|
Beego uses many middlewares, including MySQL, Redis, SSDB and so on.
|
|
|
|
|
|
|
|
We provide docker compose file to start all middlewares.
|
|
|
|
|
|
|
|
You can run:
|
|
|
|
```shell script
|
|
|
|
docker-compose -f scripts/test_docker_compose.yml up -d
|
|
|
|
```
|
|
|
|
Unit tests read addressed from environment, here is an example:
|
|
|
|
```shell script
|
|
|
|
export ORM_DRIVER=mysql
|
|
|
|
export ORM_SOURCE="beego:test@tcp(192.168.0.105:13306)/orm_test?charset=utf8"
|
|
|
|
export MEMCACHE_ADDR="192.168.0.105:11211"
|
|
|
|
export REDIS_ADDR="192.168.0.105:6379"
|
|
|
|
export SSDB_ADDR="192.168.0.105:8888"
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2016-01-13 14:02:36 +00:00
|
|
|
## Contribution guidelines
|
|
|
|
|
|
|
|
### Pull requests
|
|
|
|
|
|
|
|
First of all. beego follow the gitflow. So please send you pull request
|
2020-08-04 07:27:45 +00:00
|
|
|
to **develop-2** branch. We will close the pull request to master branch.
|
2016-01-13 14:02:36 +00:00
|
|
|
|
|
|
|
We are always happy to receive pull requests, and do our best to
|
|
|
|
review them as fast as possible. Not sure if that typo is worth a pull
|
|
|
|
request? Do it! We will appreciate it.
|
|
|
|
|
2020-08-04 07:27:45 +00:00
|
|
|
Don't forget to rebase your commits!
|
|
|
|
|
2016-01-13 14:02:36 +00:00
|
|
|
If your pull request is not accepted on the first try, don't be
|
|
|
|
discouraged! Sometimes we can make a mistake, please do more explaining
|
|
|
|
for us. We will appreciate it.
|
|
|
|
|
|
|
|
We're trying very hard to keep beego simple and fast. We don't want it
|
|
|
|
to do everything for everybody. This means that we might decide against
|
|
|
|
incorporating a new feature. But we will give you some advice on how to
|
|
|
|
do it in other way.
|
|
|
|
|
|
|
|
### Create issues
|
|
|
|
|
|
|
|
Any significant improvement should be documented as [a GitHub
|
|
|
|
issue](https://github.com/astaxie/beego/issues) before anybody
|
|
|
|
starts working on it.
|
|
|
|
|
|
|
|
Also when filing an issue, make sure to answer these five questions:
|
|
|
|
|
|
|
|
- What version of beego are you using (bee version)?
|
|
|
|
- What operating system and processor architecture are you using?
|
|
|
|
- What did you do?
|
|
|
|
- What did you expect to see?
|
|
|
|
- What did you see instead?
|
|
|
|
|
|
|
|
### but check existing issues and docs first!
|
|
|
|
|
|
|
|
Please take a moment to check that an issue doesn't already exist
|
|
|
|
documenting your bug report or improvement proposal. If it does, it
|
|
|
|
never hurts to add a quick "+1" or "I have this problem too". This will
|
|
|
|
help prioritize the most common problems and requests.
|
|
|
|
|
|
|
|
Also if you don't know how to use it. please make sure you have read though
|
|
|
|
the docs in http://beego.me/docs
|