-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Install lombok plugin for your IDE (Recommended IDE - Intellij IDEA Community Edition). Refer to Lombok site for installation instructions
Refer to Docker site for installation instructions
Refer to Vault site for installation instructions
Refer to MySQL site for installation instructions
-
Download the latest starter project source code from Releases section or clone this repository
-
Extract the source code and then open terminal/console in your working directory
-
Run
cd engine/ && ./gradlew clean buildfor linux orcd engine\ && gradlew.bat clean buildfor windows. This will generateengine/build/libs/engine-1.0.0.jarfile which is used by gradle to build serve microservices -
Import
serve/as a gradle project into IDE. In case of Intellij, check following boxes while importing project :Use auto-importandcreate directories for empty content roots automatically -
Run
cd ../serve/ && ./gradlew clean buildusing linux terminal orcd ..\serve\ && gradlew.bat clean buildon windows console
configservice is used for centralized configurations. By default it is making use of serve-configuration repository.
You can change it by updating
spring.cloud.config.server.git.uri in configservice > src > main > resources > bootstrap.yml
- Verify docker compose is installed by running following command
docker-compose --version