To enable cardano-cli and cardano-node bash auto-completion for the current shell:
source <(cardano-cli --bash-completion-script cardano-cli)
source <(cardano-cli --bash-completion-script cardano-node)To enable it for all future sessions:
| ROOT CA | |
| -------------- | |
| Generate the CA private key: | |
| $ openssl genrsa -out ca.key 2048 | |
| Create and self sign the root certificate: | |
| $ openssl req -new -x509 -key ca.key -out ca.crt | |
| Import root CA certificate into truststore: | |
| $ keytool -import -file ca.crt -keystore ca.truststore -keypass <password> -storepass <password> |
To enable cardano-cli and cardano-node bash auto-completion for the current shell:
source <(cardano-cli --bash-completion-script cardano-cli)
source <(cardano-cli --bash-completion-script cardano-node)To enable it for all future sessions:
| @Configuration | |
| @EnableAutoConfiguration | |
| @EnableEurekaClient | |
| @RestController | |
| public class Application { | |
| @RequestMapping("/") | |
| public String home() { | |
| return "Hello World"; | |
| } |
| @ApplicationPath("/") | |
| public class ApplicationConfig extends Application { | |
| @Override | |
| public Set<Class<?>> getClasses() { | |
| Set<Class<?>> resources = new HashSet<>(); | |
| resources.add(HelloResource.class); | |
| return resources; | |
| } | |
| } |