application-dev.yaml 809 Bytes
# vibe_erp — developer overrides (active under -Dspring.profiles.active=dev).
#
# Activated by `./gradlew :distribution:bootRun` (see distribution/build.gradle.kts).
# These values point at a local Postgres started via `make up` or any other
# locally-running Postgres on port 5432.

spring:
  datasource:
    url: jdbc:postgresql://localhost:5432/vibeerp
    username: vibeerp
    password: vibeerp

vibeerp:
  security:
    jwt:
      # Dev-only secret — DO NOT use this in production. The application.yaml
      # template reads VIBEERP_JWT_SECRET from the environment and refuses
      # to start without a real value.
      secret: dev-only-secret-must-be-at-least-32-chars-please
  plugins:
    directory: ./plugins-dev
  files:
    local-path: ./files-dev

logging:
  level:
    org.vibeerp: DEBUG