##This is an Application made in Spring Boot using Java 17, and postgres as DBMS.
You can run the application from the command line with Gradle or Maven. You can also an executable JAR file that contains all the necesary dependencies, classes, and resources and run that. Building an executable jar makes it easy to ship, version, and deploy the service as an application throughout the development lifecycle, across different environments, and so forth.
###If you use Gradle, you can run the application by using ./gradlew bootRun. ###Alternatively, you can build the JAR file by using ./gradlew build
java -jar build/libs/gs-scheduling-tasks-0.1.0.jar
###If you use Maven, you can run the application by using ./mvnw spring-boot:run. ###Alternatively, you can build the JAR file with ./mvnw clean package ###and then run the JAR file, as follows:
java -jar target/gs-scheduling-tasks-0.1.0.jar