-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.properties
More file actions
30 lines (23 loc) · 1.01 KB
/
Copy pathapplication.properties
File metadata and controls
30 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
spring.application.name=spring_boot_java_random_user
# Security
app.security.admin.username=${APP_SECURITY_ADMIN_USER}
app.security.admin.password=${APP_SECURITY_ADMIN_PASSWORD}
app.security.user.username=${APP_SECURITY_USER}
app.security.user.password=${APP_SECURITY_PASSWORD}
app.security.test.username=${APP_SECURITY_TEST_USER}
app.security.test.password=${APP_SECURITY_TEST_PASSWORD}
# Swagger UI custom path
springdoc.swagger-ui.path=/api
# URL for Dummy API
dummy.api.base-url=https://dummyjson.com/
# URL for random user API
randomuser.api.base-url=https://randomuser.me/api/
# Database configuration
spring.datasource.url=jdbc:postgresql://localhost:${POSTGRES_PORT}/${POSTGRES_DB}
spring.datasource.username=${POSTGRES_USER}
spring.datasource.password=${POSTGRES_PASSWORD}
spring.datasource.driver-class-name=org.postgresql.Driver
# Liquibase configuration
spring.liquibase.enabled=${SPRING_LIQUIBASE_ENABLED:true}
spring.liquibase.change-log=classpath:${LB_CHANGELOG}
spring.liquibase.default-schema=${LB_SCHEMA}