Regenerating a Configuration

The easy way to modify a configuration is to use setup edit (see Modifying a Configuration). You can, however, also do it by manually editing a configuration's blueprint.yaml file and then regenerating the configuration from the blueprint as follows:

cd cue-front-path/setup
docker-compose run setup generate configuration-set

In order to see the effect of the changes you have made, you now need to rebuild and restart all the CUE Front containers:

cd cue-front-path/configuration-set
docker-compose build
docker-compose down
docker-compose up -d

If you do not see any effect from the changes you have made, try rebuilding again, this time specifying a --no-cache option with the build command:

docker-compose build --no-cache
docker-compose down
docker-compose up -d