spring: application: name: DocuSphere datasource: driver-class-name: org.postgresql.Driver jpa: hibernate: ddl-auto: create-drop # update # Use update later on but use create-drop for testing first show-sql: true properties: hibernate: format_sql: true logging: level: org.hibernate.SQL: debug org.hibernate.type.descriptor.sql.BasicBinder: trace org.springframework.core.env: debug minio: endpoint: "http://localhost:9000" # Your MinIO endpoint URL access-key: "${MINIO_ACCESS_KEY}" # Environment variable for the access key secret-key: "${MINIO_SECRET_KEY}" # Environment variable for the secret key bucket-name: "docusphere" # The bucket name you want to use # Jwt properties security: jwt: secret-key: "${JWT_SECRET_KEY}" # Environment variable for the secret key expiration-time: 3600000 # 1 hour