diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties new file mode 100644 index 0000000000000000000000000000000000000000..a0f2b58a7fb614b52250942544d45fe65ce53a0c --- /dev/null +++ b/src/main/resources/application-dev.properties @@ -0,0 +1,12 @@ +spring.application.name=authentication + +spring.datasource.url=${DB_URL} +spring.datasource.username=${DB_PASSWORD} +spring.datasource.password=${DB_PASSWORD} + +spring.datasource.driver-class-name=org.postgresql.Driver +spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect + +# Hibernate Properties +spring.jpa.hibernate.ddl-auto=update +spring.jpa.show-sql=true \ No newline at end of file diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties new file mode 100644 index 0000000000000000000000000000000000000000..c12917add41ed81cc9e56817d979dd07c7db729e --- /dev/null +++ b/src/main/resources/application-prod.properties @@ -0,0 +1 @@ +spring.application.name=authentication \ No newline at end of file diff --git a/src/main/resources/application-staging.properties b/src/main/resources/application-staging.properties new file mode 100644 index 0000000000000000000000000000000000000000..c12917add41ed81cc9e56817d979dd07c7db729e --- /dev/null +++ b/src/main/resources/application-staging.properties @@ -0,0 +1 @@ +spring.application.name=authentication \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 0ade39d802ef2cd39e48b1764eb57d9be04126ad..c12917add41ed81cc9e56817d979dd07c7db729e 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1 @@ -spring.application.name=authentication +spring.application.name=authentication \ No newline at end of file