Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 669 Bytes

CONTRIBUTE.md

File metadata and controls

48 lines (28 loc) · 669 Bytes

CONTRIBUTE

Developer Environment

  1. Python requirements
# Install python requirement in your environment.
pip install -r requirements_dev.txt
  1. Redis

The test Redis host is 127.0.0.1, or setting by environment variable CACHE_HOST.

Its password is setting by environment variable CACHE_PASSWORD.

  1. RabbitMQ

RabbitMQ for test is settings by environment variable AMQP_SERVER_ADDRESS.

Tag a new release

tag a version:

git tag -a v0.1.0

push tags to remote:

git push --tags

Maintenance documents

# English version (default)
mkdocs serve
# Chinese version
cd docs/zh && mkdocs serve