Configuration Management Service
- JAVA 21
- PostgresSQL
- Kafka
-
Database Setup: Run the following commands with superuser privileges in your PostgreSQL database:
CREATE USER vault_user WITH PASSWORD 'uQZXLH0kJV'; CREATE DATABASE vault; ALTER DATABASE vault OWNER TO vault_user; GRANT ALL PRIVILEGES ON DATABASE vault TO vault_user;These commands create a new user 'vault_user' with a password, set up a database named 'vault', assign ownership to the user, and grant all privileges to the user.
-
Ensure JAVA 21 is set as your JAVA_HOME environment variable. Navigate to the project directory. Run the following commands in the terminal:
./mvnw clean install cd target java -Dspring.profiles.active=local -jar orchestrator-1.0.jarThese commands will build the project using Maven, navigate to the target directory, and run the project with the ' local' profile activated.