diff --git a/.gitignore b/.gitignore index 0e45eef..3e5f0f8 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ out/ # Custom .env /pgadmin_data/ + +.DS_Store \ No newline at end of file diff --git a/start-dev b/start-dev new file mode 100755 index 0000000..d4b842b --- /dev/null +++ b/start-dev @@ -0,0 +1,6 @@ +#!/bin/bash + +./gradlew bootJar && MINIO_ROOT_PASSWORD=test0123 \ +MINIO_ROOT_USER=minio-root \ +POSTGRES_PASSWORD=devpass \ +java -jar build/libs/api-0.1.0-SNAPSHOT.jar $@