Files
plugin-starter/compose/application.yaml
Ryan Wang 887bead9a9 docs: update docs for docker-compose setup
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-10-09 17:27:55 +08:00

41 lines
847 B
YAML

server:
port: 8090
spring:
profiles:
active: dev
halo:
external-url: http://localhost:8090/
security:
initializer:
super-admin-username: admin
super-admin-password: P@88w0rd
oauth2:
jwt:
jwsAlgorithm: rs512
public-key-location: classpath:app.pub
private-key-location: classpath:app.key
plugin:
runtime-mode: development # development, deployment
classes-directories:
- "build/classes"
- "build/resources"
lib-directories:
- "libs"
fixedPluginPath:
- "/plugin"
springdoc:
api-docs:
enabled: true
swagger-ui:
enabled: true
show-login-endpoint: false
show-actuator: false
use-management-port: false
management:
endpoints:
web:
exposure:
include: health,info,metrics,startup,shutdown
server:
port: 8090