A intelligent software assistant written in Java
● Projekt
● HTML Handbuch ● PDF Handbuch
Skylar benutzt Spring Cloud Config Server um Ihre Microservices zu konfigurieren. Weitere Information sind im Spring Manual.
# e.g. configuration skylar-list
# profile production
curl --silent http://skylar-registry.livingfire.de/core/app | python -m json.tool
# profile development
curl --silent http://skylar-registry.livingfire.de/core/development | python -m json.tool
# skylar-registry in development mode:
# curl http://skylar-registry.livingfire.de:8080/core/app
PROJECT="$HOME/git/skylar"
cd $PROJECT/docker/_volumes/registry
# alter the .yml files in your favorit editor
echo "foo: bar" >> core.yml
# update registry local
curl -X POST http://skylar-registry.livingfire.de/management/refresh
# check that new key exists
curl --silent http://skylar-registry.livingfire.de/core/app | python -m json.tool