Development
Install development dependencies
| make install-deps
# OR: pip install -r requirements-dev.txt
|
Execute tests
| make tests
# OR: python -m pytest -vv --no-cov-on-fail --color=yes --cov-report term --cov=config tests
|
Generating documentation locally
| pip install 'config-client[docs]'
|
Spring-Cloud-Configserver
If you would like to test spring-cloud-configserver locally can you use:
| docker run -it --rm -p 8888:8888 \
hyness/spring-cloud-config-server:3.1.0-jre17 \
--spring.cloud.config.server.git.uri=https://github.com/spring-cloud-samples/config-repo
|