The content-service for uploading an etalon pair to AWS S3.
- Java 11
- Docker
./gradlew clean build-- build the project
(If running from windows - replace / to \ )
./gradlew clean test-- build and run the tests.
- terminal:
java -jar build/libs/*.jar-- run the project
- docker:
docker build .- build docker imagedocker run image-name- run app
- create and run db container locally
docker run --name postgres-db \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_USERNAME=postgres \
-e POSTGRES_DB=tenant_db \
-p 5432:5432 -d postgres
./gradlew diffChangeLog- generate a file with differences between the current db schema and persist entities