Secure, store, and tightly control access to your applications' secrets.
./mvnw -pl backoffice spring-boot:run -Dspring-boot.run.jvmArguments="-DPORT=$PORT"
Note: Set the environment variable PORT to the port you want to use.
./mvnw -pl backoffice clean install && java -DPORT=$PORT -jar backoffice/target/vault-backoffice.jar
Note: Set the environment variable PORT to the port you want to use.
./mvnw -pl java-library spring-boot:run -Dspring-boot.run.jvmArguments="-DPORT=$PORT"
Note: Set the environment variable PORT to the port you want to use.
./mvnw -pl java-library clean install && java -DPORT=$PORT -jar
java-library/target/vault-java-library.jar
Note: Set the environment variable PORT to the port you want to use.
cd frontend && npm install && npm start
cd frontend && npm install && npm run build
docker compose --env-file .env.dev up
Test the backoffice on http://localhost:8080
curl http://localhost:8080/health
Test the java-library on http://localhost:8081
curl http://localhost:8081/health
Create the .env
file as described in .env.dev
docker compose build