X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=README.md;h=031c0e8ef70b05ba272dbb6b9dc1e434f1a9f61c;hb=5ec88e4569f8c8ad89ffc775f1687470f3b04fe7;hp=e4309aac5a5a2bc8a484d71467553f43ee08d347;hpb=286492027e88f2463d6b91e670e6f5f3712888ab;p=clamp.git diff --git a/README.md b/README.md index e4309aac..031c0e8e 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ If the sdcAddress is not specified or not available (connection failure) the mes A [docker-compose example file](extra/docker/clamp/docker-compose.yml) can be found under the [extra/docker/clamp/ folder](extra/docker/). -Once the image has been built and is available locally, you can use the `docker-compose up` command to deploy a prepopullated database and a clamp instance available on [http://localhost:8080/designer/index.html](http://localhost:8080/designer/index.html). +Once the image has been built and is available locally, you can use the `docker-compose up` command to deploy a prepopullated database and a clamp instance available on [https://localhost:3000](https://localhost:3000). ### Logs @@ -206,7 +206,7 @@ In that case, the credentials should be specified in `src/main/resources/clds/cl Passwords should be hashed using Bcrypt : ``` -# pip3 install bcrypt # if you don't have the bcrypt python lib installed, should be done once. +# pip3 install --no-cache-dir bcrypt # if you don't have the bcrypt python lib installed, should be done once. # python3 -c 'import bcrypt; print(bcrypt.hashpw("password".encode(), bcrypt.gensalt(rounds=10, prefix=b"2a")))' ```